switched to using nixos-anywhere flake in dev shell

This commit is contained in:
Leyla Becker 2025-06-01 14:19:31 -05:00
parent 254edf2d4a
commit 36382ebfe0
3 changed files with 163 additions and 4 deletions

View file

@ -53,7 +53,7 @@
../modules/system-modules
];
in {
forEachPkgs = lambda: forEachSystem (system: lambda (pkgsFor system));
forEachPkgs = lambda: forEachSystem (system: lambda system (pkgsFor system));
mkUnless = condition: yes: (lib.mkIf (!condition) yes);
mkIfElse = condition: yes: no: