feat: configure desktop
This commit is contained in:
parent
2138743d3e
commit
652b1f3dd3
10 changed files with 201 additions and 15 deletions
34
modules/_home/theme.nix
Normal file
34
modules/_home/theme.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue