mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-25 02:03:51 -08:00
30 lines
497 B
Nix
30 lines
497 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [ ./catppuccin.nix ];
|
|
|
|
gtk = {
|
|
enable = true;
|
|
cursorTheme = {
|
|
name = "Bibata-Modern-Ice";
|
|
size = 26;
|
|
};
|
|
iconTheme = {
|
|
name = "Papirus-Dark";
|
|
};
|
|
theme = {
|
|
name = "rose-pine";
|
|
package = pkgs.rose-pine-gtk-theme;
|
|
};
|
|
};
|
|
|
|
qt = {
|
|
enable = true;
|
|
platformTheme.name = "gtk";
|
|
style.name = "gtk2";
|
|
};
|
|
|
|
home.file.".config/kdeglobals".text = ''
|
|
[Colors:View]
|
|
BackgroundNormal=#191724
|
|
'';
|
|
}
|