ran statix linter

This commit is contained in:
Leyla Becker 2024-09-17 16:49:59 -05:00
parent 11603852f4
commit 0b1309dd0f
16 changed files with 376 additions and 329 deletions

View file

@ -1,8 +1,8 @@
{ lib, ... }:
_:
{
mkUnless = condition: then: (mkIf (!condition) then);
mkIfElse = condition: then: else: lib.mkMerge [
(mkIf condition then)
(mkUnless condition else)
];
# mkUnless = condition: then: (mkIf (!condition) then);
# mkIfElse = condition: then: else: lib.mkMerge [
# (mkIf condition then)
# (mkUnless condition else)
# ];
}