clean cad
All checks were successful
nixos config pipeline / show-flake (push) Successful in 32s
nixos config pipeline / deploy (push) Successful in 6s

This commit is contained in:
smayzy 2026-01-25 15:11:51 +01:00
parent d54bad1c90
commit b01c562f3a
6 changed files with 4 additions and 52 deletions

View File

@ -1,7 +0,0 @@
{ ... }:
{
imports = [
./freecad.nix
./fritzing.nix
];
}

View File

@ -1,20 +0,0 @@
{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.freecad.enable = mkOption {
type = types.bool;
default = false;
description = "enable freecad";
};
config = mkIf config.smayzy.freecad.enable {
environment.systemPackages = with pkgs; [ freecad-wayland ];
};
}

View File

@ -1,20 +0,0 @@
{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.fritzing.enable = mkOption {
type = types.bool;
default = false;
description = "enable fritzing";
};
config = mkIf config.smayzy.fritzing.enable {
environment.systemPackages = with pkgs; [ fritzing ];
};
}

View File

@ -4,7 +4,6 @@
./audio
./base-cli
./browser
./cad
./comm
./containers
./ctf

View File

@ -31,8 +31,6 @@ in
};
arduino.enable = true;
calibre.enable = true;
freecad.enable = true;
fritzing.enable = true;
tor.enable = true;
chromium.enable = true;
ghidra.enable = true;
@ -51,6 +49,8 @@ in
bitwarden-desktop
aegisub
kdePackages.kdenlive
freecad-wayland
fritzing
];
};
}

View File

@ -35,9 +35,7 @@ in
};
arduino.enable = true;
calibre.enable = true;
freecad.enable = true;
tor.enable = true;
fritzing.enable = true;
alacritty.enable = true;
chromium.enable = true;
firejail.enable = true;
@ -56,6 +54,8 @@ in
bitwarden-desktop
aegisub
kdePackages.kdenlive
freecad-wayland
fritzing
];
};
}