This commit is contained in:
Danilo Reyes
2026-03-16 16:16:32 -06:00
parent 4f4c23d1df
commit 195c55891e
35 changed files with 430 additions and 469 deletions

17
hosts/mac/toggles.nix Normal file
View File

@@ -0,0 +1,17 @@
{ inputs }:
let
inherit (inputs.self.lib) mkEnabled enableList;
in
{
emacs.enable = true;
dev = enableList mkEnabled [
"nix"
"python"
"sh"
];
shell = enableList mkEnabled [
"exercism"
"multimedia"
"tools"
];
}