From f0df5cf1a758a1695ab258a633eb9ffb41d28ab8 Mon Sep 17 00:00:00 2001 From: Nydragon Date: Sun, 1 Dec 2024 01:55:12 +0100 Subject: [PATCH] feat: add desktop system role and enable themes only if enabled --- hosts/brontes/default.nix | 2 ++ hosts/marr/default.nix | 2 ++ modules/themes/default.nix | 33 +++++++++++++++++++------------- options/system/roles/default.nix | 7 ++++++- options/system/roles/desktop.nix | 9 +++++++++ 5 files changed, 39 insertions(+), 14 deletions(-) create mode 100644 options/system/roles/desktop.nix diff --git a/hosts/brontes/default.nix b/hosts/brontes/default.nix index b22d27a..f2d9434 100644 --- a/hosts/brontes/default.nix +++ b/hosts/brontes/default.nix @@ -33,6 +33,8 @@ modules = { system = { + roles.desktop.enable = true; + outputs = { "DP-2" = { resX = 1920; diff --git a/hosts/marr/default.nix b/hosts/marr/default.nix index d4d782b..ddc01b9 100644 --- a/hosts/marr/default.nix +++ b/hosts/marr/default.nix @@ -17,6 +17,8 @@ media.enableAll = true; system = { + roles.desktop.enable = true; + outputs = { eDP-1 = { resX = 3840; diff --git a/modules/themes/default.nix b/modules/themes/default.nix index c4ade54..402a6df 100644 --- a/modules/themes/default.nix +++ b/modules/themes/default.nix @@ -1,16 +1,23 @@ -{ pkgs, ... }: { - qt = { - enable = true; - platformTheme = "gtk2"; - #platformTheme = "qt5ct"; - #style = "kvantum"; - }; + pkgs, + lib, + config, + ... +}: +{ + config = lib.mkIf config.modules.system.roles.desktop.enable { + qt = { + enable = true; + platformTheme = "gtk2"; + #platformTheme = "qt5ct"; + #style = "kvantum"; + }; - environment.systemPackages = with pkgs; [ - #vimix-icon-theme - #pop-icon-theme - catppuccin-papirus-folders - #catppuccin-kvantum - ]; + environment.systemPackages = with pkgs; [ + #vimix-icon-theme + #pop-icon-theme + catppuccin-papirus-folders + #catppuccin-kvantum + ]; + }; } diff --git a/options/system/roles/default.nix b/options/system/roles/default.nix index 7e6c3c1..60a8656 100644 --- a/options/system/roles/default.nix +++ b/options/system/roles/default.nix @@ -1 +1,6 @@ -{ imports = [ ./terminal.nix ]; } +{ + imports = [ + ./terminal.nix + ./desktop.nix + ]; +} diff --git a/options/system/roles/desktop.nix b/options/system/roles/desktop.nix new file mode 100644 index 0000000..dfacf66 --- /dev/null +++ b/options/system/roles/desktop.nix @@ -0,0 +1,9 @@ +{ lib, ... }: +let + inherit (lib) mkEnableOption; +in +{ + options.modules.system.roles.desktop = { + enable = mkEnableOption "desktop usage features"; + }; +}