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