From a873b5126f390a02e083ab5e67cbfcc695fca8e4 Mon Sep 17 00:00:00 2001 From: wi11-holdsworth <83637728+wi11-holdsworth@users.noreply.github.com> Date: Wed, 8 Oct 2025 00:52:26 +1100 Subject: [PATCH] refactor: dev bundle should be enabled in dev hosts, not desktop bundle --- hosts/desktop/configuration.nix | 1 + hosts/laptop/configuration.nix | 1 + modules/nixos/bundles/desktop.nix | 1 - 3 files changed, 2 insertions(+), 1 deletion(-) diff --git a/hosts/desktop/configuration.nix b/hosts/desktop/configuration.nix index b5cf575..dc40017 100644 --- a/hosts/desktop/configuration.nix +++ b/hosts/desktop/configuration.nix @@ -13,6 +13,7 @@ # keep-sorted start amd-gpu.enable = true; desktop.enable = true; + dev.enable = true; external-speakers.enable = true; gaming.enable = true; link2c.enable = true; diff --git a/hosts/laptop/configuration.nix b/hosts/laptop/configuration.nix index 42e564a..3247261 100644 --- a/hosts/laptop/configuration.nix +++ b/hosts/laptop/configuration.nix @@ -13,6 +13,7 @@ # keep-sorted start amd-gpu.enable = true; desktop.enable = true; + dev.enable = true; gnome.enable = true; tlp.enable = true; # keep-sorted end diff --git a/modules/nixos/bundles/desktop.nix b/modules/nixos/bundles/desktop.nix index 1764cea..1fee2ff 100644 --- a/modules/nixos/bundles/desktop.nix +++ b/modules/nixos/bundles/desktop.nix @@ -10,7 +10,6 @@ in { config = lib.mkIf config.${feature}.enable { # keep-sorted start - dev.enable = true; pipewire.enable = true; print-and-scan.enable = true; protonmail-bridge.enable = true;