liminalOS/users/youwen/linux/theming/default.nix

31 lines
497 B
Nix
Raw Normal View History

2024-09-02 18:16:22 -07:00
{ pkgs, ... }:
{
imports = [ ./catppuccin.nix ];
gtk = {
enable = true;
cursorTheme = {
name = "Bibata-Modern-Ice";
size = 26;
};
2024-09-02 18:16:22 -07:00
iconTheme = {
name = "Papirus-Dark";
};
2024-10-29 13:56:10 -07:00
theme = {
2024-10-29 14:03:52 -07:00
name = "rose-pine";
package = pkgs.rose-pine-gtk-theme;
2024-10-29 13:56:10 -07:00
};
};
qt = {
enable = true;
2024-10-29 13:56:10 -07:00
platformTheme.name = "gtk";
style.name = "gtk2";
};
2024-10-29 18:28:31 -07:00
home.file.".config/kdeglobals".text = ''
[Colors:View]
BackgroundNormal=#191724
'';
}