feat: configure desktop

This commit is contained in:
Zoty 2026-03-28 03:28:42 -03:00
parent 2138743d3e
commit 652b1f3dd3
Signed by: Zoty
SSH key fingerprint: SHA256:WsGEGivgl37t3Mth6uugXMOgMCTR7QolIepNbC+j/tA
10 changed files with 201 additions and 15 deletions

34
modules/_home/theme.nix Normal file
View file

@ -0,0 +1,34 @@
{ pkgs, ... }: {
home.packages = with pkgs; [
gruvterial-theme
gruvbox-plus-icons
libsForQt5.qt5ct
kdePackages.qt6ct
];
gtk = {
enable = true;
theme = {
name = "Gruvterial-Dark";
package = pkgs.gruvterial-theme;
};
iconTheme = {
name = "Gruvbox-Plus-Dark";
package = pkgs.gruvbox-plus-icons;
};
cursorTheme = {
name = "Bibata-Modern-Ice";
package = pkgs.bibata-cursors;
size = 24;
};
};
qt = {
enable = true;
platformTheme.name = "gtk";
style = {
name = "kvantum";
package = pkgs.kdePackages.qtstyleplugin-kvantum;
};
};
}