feat: add desktop system role and enable themes only if enabled

This commit is contained in:
Nydragon 2024-12-01 01:55:12 +01:00
parent f2f778891c
commit f0df5cf1a7
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
5 changed files with 39 additions and 14 deletions

View file

@ -33,6 +33,8 @@
modules = {
system = {
roles.desktop.enable = true;
outputs = {
"DP-2" = {
resX = 1920;

View file

@ -17,6 +17,8 @@
media.enableAll = true;
system = {
roles.desktop.enable = true;
outputs = {
eDP-1 = {
resX = 3840;

View file

@ -1,5 +1,11 @@
{ pkgs, ... }:
{
pkgs,
lib,
config,
...
}:
{
config = lib.mkIf config.modules.system.roles.desktop.enable {
qt = {
enable = true;
platformTheme = "gtk2";
@ -13,4 +19,5 @@
catppuccin-papirus-folders
#catppuccin-kvantum
];
};
}

View file

@ -1 +1,6 @@
{ imports = [ ./terminal.nix ]; }
{
imports = [
./terminal.nix
./desktop.nix
];
}

View file

@ -0,0 +1,9 @@
{ lib, ... }:
let
inherit (lib) mkEnableOption;
in
{
options.modules.system.roles.desktop = {
enable = mkEnableOption "desktop usage features";
};
}