1

Modules/Color: Don't install icon/cursor packages on headless systems

This commit is contained in:
2025-11-15 01:24:09 +01:00
parent cc43c758c5
commit f4f429e619
3 changed files with 10 additions and 6 deletions

View File

@ -53,25 +53,28 @@ in
};
color = {
installPackages = !headless;
extraPackages = with pkgs; [
papirus-icon-theme
bibata-cursors
inputs.waifu-cursors.packages.${pkgs.system}.all
];
scheme = "catppuccin-mocha";
font = builtins.head nixosConfig.fonts.fontconfig.defaultFonts.monospace;
cursor = "Bibata-Modern-Classic";
cursorSize = 24;
cursorPackage = pkgs.bibata-cursors;
iconTheme = "Papirus";
iconPackage = pkgs.papirus-icon-theme;
wallpaper = "Windows";
scheme = "catppuccin-mocha";
accent = "mauve";
accentHl = "pink";
accentDim = "lavender";
accentText = "base";
wallpaper = "Windows";
font = builtins.head nixosConfig.fonts.fontconfig.defaultFonts.monospace;
};
docs.enable = !headless;