diff --git a/systems/gandalf/default.nix b/systems/gandalf/default.nix index d40e128..458f92d 100644 --- a/systems/gandalf/default.nix +++ b/systems/gandalf/default.nix @@ -23,6 +23,7 @@ ../modules/qbittorrent.nix ../modules/gimp.nix ../modules/bambu-studio.nix + ../modules/openscad.nix ]; boot.loader.systemd-boot.enable = true; diff --git a/systems/modules/openscad.nix b/systems/modules/openscad.nix new file mode 100644 index 0000000..cf5b034 --- /dev/null +++ b/systems/modules/openscad.nix @@ -0,0 +1,8 @@ + +{ config, pkgs, ... } : + +{ + environment.systemPackages = with pkgs; [ + openscad + ]; +}