feat: installed kicad

This commit is contained in:
Leyla Becker 2026-01-11 18:14:06 -06:00
parent 2868448c2d
commit 3081267b4e
3 changed files with 25 additions and 0 deletions

View file

@ -75,6 +75,7 @@ in {
proton-mail-pwa.enable = true; proton-mail-pwa.enable = true;
proton-calendar-pwa.enable = true; proton-calendar-pwa.enable = true;
matrix-cyberia-pwa.enable = true; matrix-cyberia-pwa.enable = true;
kicad.enable = true;
}) })
]; ];
} }

View file

@ -14,6 +14,7 @@
./prostudiomasters.nix ./prostudiomasters.nix
./idea.nix ./idea.nix
./kdenlive.nix ./kdenlive.nix
./kicad.nix
./krita.nix ./krita.nix
./protonvpn.nix ./protonvpn.nix
./calibre.nix ./calibre.nix

View file

@ -0,0 +1,23 @@
{
lib,
pkgs,
config,
...
}: {
options.programs.kicad = {
enable = lib.mkEnableOption "enable kicad";
};
config = lib.mkIf config.programs.kicad.enable (lib.mkMerge [
{
home.packages = with pkgs; [
kicad
];
}
(
lib.mkIf config.impermanence.enable {
# TODO:
}
)
]);
}