Add new applications for school

This commit is contained in:
Ethan Simmons
2025-04-06 13:44:23 -05:00
parent cd2f9db375
commit 746f6b6402
3 changed files with 43 additions and 1 deletions

View File

@@ -15,6 +15,9 @@ in
xournalpp
libreoffice
anki
] ++ optional cfg.citrix citrix;
]
++ optional cfg.citrix citrix
++ optional cfg.kicad kicad
++ optional cfg.logisim logisim-evolution;
};
}

View File

@@ -1,5 +1,6 @@
{ lib
, pkgs
, config
, ...
}:
@@ -19,5 +20,15 @@ in
type = types.bool;
default = false;
};
kicad = mkOption {
description = "Whether to install kicad";
type = types.bool;
default = cfg.enable;
};
logisim = mkOption {
description = "Whether to install logisim";
type = types.bool;
default = cfg.enable;
};
};
}