feat: installed kicad
This commit is contained in:
parent
2868448c2d
commit
3081267b4e
3 changed files with 25 additions and 0 deletions
|
|
@ -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;
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
23
modules/home-manager-modules/programs/kicad.nix
Normal file
23
modules/home-manager-modules/programs/kicad.nix
Normal 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:
|
||||||
|
}
|
||||||
|
)
|
||||||
|
]);
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue