feat: move to carbonfox

This commit is contained in:
Artur Manuel 2024-12-13 20:44:36 +00:00
commit 3047da954a
9 changed files with 210 additions and 105 deletions

View file

@ -4,11 +4,16 @@
...
}: let
themes = {
gtk-theme = pkgs.gruvbox-material-gtk-theme;
gtk-theme = pkgs.nightfox-gtk-theme.override {
colorVariants = ["dark"];
tweakVariants = ["carbon"];
sizeVariants = ["compact"];
themeVariants = ["all"];
};
kvantum-theme = pkgs.gruvbox-kvantum.override {
variant = "Gruvbox-Dark-Green";
};
icon-theme = pkgs.gruvbox-plus-icons;
icon-theme = pkgs.colloid-icon-theme;
cursor-theme = pkgs.simp1e-cursors;
};
in {
@ -19,9 +24,9 @@ in {
"org/gnome/desktop/interface" = {
color-scheme = "prefer-dark";
cursor-size = lib.gvariant.mkUint32 24;
cursor-theme = "Simp1e-Gruvbox-Dark";
icon-theme = "Gruvbox-Plus-Dark";
gtk-theme = "Gruvbox-Material-Dark";
cursor-theme = "Simp1e-Dark";
icon-theme = "Colloid-Dark";
gtk-theme = "Nightfox-Purple-Dark-Compact-Carbon";
};
};
}
@ -31,14 +36,15 @@ in {
qt = {
enable = true;
platformTheme = "qt5ct";
style = "kvantum";
platformTheme = "gnome";
style = "adwaita-dark";
};
environment.systemPackages = builtins.attrValues themes;
systemd.user.tmpfiles.rules = [
"L+ %h/.config/gtk-4.0/gtk.css - - - - ${themes.gtk-theme}/share/themes/Gruvbox-Material-Dark/gtk-4.0/gtk.css"
"L+ %h/.config/gtk-4.0/assets - - - - ${themes.gtk-theme}/share/themes/Gruvbox-Material-Dark/gtk-4.0/assets"
"L+ %h/.config/gtk-4.0/gtk.css - - - - ${themes.gtk-theme}/share/themes/Nightfox-Purple-Dark-Compact-Carbon/gtk-4.0/gtk.css"
"L+ %h/.config/gtk-4.0/gtk-dark.css - - - - ${themes.gtk-theme}/share/themes/Nightfox-Purple-Dark-Compact-Carbon/gtk-4.0/gtk-dark.css"
"L+ %h/.config/gtk-4.0/assets - - - - ${themes.gtk-theme}/share/themes/Nightfox-Purple-Dark-Compact-Carbon/gtk-4.0/assets"
"L+ %h/.config/Kvantum/Gruvbox-Dark-Green - - - - ${themes.kvantum-theme}/share/Kvantum/Gruvbox-Dark-Green/"
];
}