nix/home-manager/common/desktops/gnome/themes/gruvbox/default.nix

64 lines
1.9 KiB
Nix
Raw Normal View History

2023-09-29 07:09:58 +02:00
# Generated via dconf2nix: https://github.com/gvolpe/dconf2nix
{ lib, hostname, username, ... }: with lib.hm.gvariant;
let
2023-09-29 09:57:42 +02:00
# General Theming
2023-09-29 10:01:47 +02:00
font = "FontAwesome Bold 11";
2023-09-29 10:03:09 +02:00
font-doc = "FontAwesome Regular 11";
font-mono = "JetBrainsMono Nerd Font Propo Medium 11";
2023-09-29 09:57:42 +02:00
2023-09-29 07:09:58 +02:00
# Day Variant
2023-09-29 10:37:17 +02:00
day-wallpaper = "file:///etc/nixos/git/wallpapers/gruvbox/wallpaper9.jpg";
2023-09-29 12:41:28 +02:00
# day-gtk-theme = "vimix-doder";
2023-09-29 07:09:58 +02:00
day-shell-theme = "vimix-doder";
day-icon-theme = "Vimix-Doder";
# Night Variant
2023-09-29 10:37:17 +02:00
night-wallpaper = "file:///etc/nixos/git/wallpapers/gruvbox/wallpaper12.jpg";
2023-09-29 12:41:28 +02:00
# night-gtk-theme = "Gruvbox-Dark-BL";
2023-09-29 07:09:58 +02:00
night-shell-theme = "Gruvbox-Dark-BL";
night-icon-theme = "Nordzy-yellow-dark";
in {
# Gnome GTK Settings
gtk.theme = "${night-gtk-theme}";
# Gnome DCONF Settings
dconf.settings = {
"org/gnome/desktop/background" = {
picture-uri = "${day-wallpaper}";
picture-uri-dark = "${night-wallpaper}";
};
"org/gnome/shell/extensions/nightthemeswitcher/gtk-variants" = {
enabled = true;
day = "${day-gtk-theme}";
night = "${night-gtk-theme}";
};
"org/gnome/shell/extensions/nightthemeswitcher/icon-variants" = {
enabled = true;
day = "${day-icon-theme}";
night = "${night-icon-theme}";
};
"org/gnome/shell/extensions/nightthemeswitcher/shell-variants" = {
enabled = true;
day = "${day-shell-theme}";
night = "${night-shell-theme}";
};
2023-09-29 10:01:47 +02:00
2023-09-29 07:09:58 +02:00
"org/gnome/desktop/interface" = {
clock-show-date = true;
clock-show-weekday = false;
2023-09-29 09:57:42 +02:00
color-scheme = "prefer-light";
2023-09-29 07:09:58 +02:00
font-antialiasing = "rgba";
font-hinting = "slight";
2023-09-29 09:57:42 +02:00
gtk-theme = "${day-gtk-theme}";
2023-09-29 07:44:09 +02:00
icon-theme = "${night-icon-theme}";
2023-09-29 09:57:42 +02:00
monospace-font-name = "${font-mono}";
font-name = "${font}";
document-font-name = "${font-doc}";
2023-09-29 07:09:58 +02:00
show-battery-percentage = false;
};
};
}