This commit is contained in:
iFargle 2023-09-29 16:57:42 +09:00
parent 74055200ab
commit 38f37aba0f
2 changed files with 12 additions and 9 deletions

View file

@ -2,7 +2,7 @@
{ lib, hostname, username, ... }: with lib.hm.gvariant; { lib, hostname, username, ... }: with lib.hm.gvariant;
let let
# General Theming # General Theming
font = "JetBrainsMonoNL Nerd Font Propo Thin 11"; font = "Monospace Bold";
font-mono = "JetBrainsMono Nerd Font 10"; font-mono = "JetBrainsMono Nerd Font 10";
font-doc = "JetBrainsMonoNL Nerd Font 11"; font-doc = "JetBrainsMonoNL Nerd Font 11";
@ -59,6 +59,5 @@ in {
document-font-name = "${font-doc}"; document-font-name = "${font-doc}";
show-battery-percentage = false; show-battery-percentage = false;
}; };
}; };
} }

View file

@ -1,6 +1,11 @@
# Generated via dconf2nix: https://github.com/gvolpe/dconf2nix # Generated via dconf2nix: https://github.com/gvolpe/dconf2nix
{ lib, hostname, username, ... }: with lib.hm.gvariant; { lib, hostname, username, ... }: with lib.hm.gvariant;
let let
# General Theming
font = "JetBrainsMonoNL Nerd Font Propo Thin 11";
font-mono = "JetBrainsMono Nerd Font 10";
font-doc = "JetBrainsMonoNL Nerd Font 11";
# Day Variant # Day Variant
day-wallpaper = "file:///etc/nixos/git/wallpapers/gruvbox/wallpaper3.jpg"; day-wallpaper = "file:///etc/nixos/git/wallpapers/gruvbox/wallpaper3.jpg";
day-gtk-theme = "vimix-doder"; day-gtk-theme = "vimix-doder";
@ -40,20 +45,19 @@ in {
day = "${day-shell-theme}"; day = "${day-shell-theme}";
night = "${night-shell-theme}"; night = "${night-shell-theme}";
}; };
"org/gnome/desktop/interface" = { "org/gnome/desktop/interface" = {
clock-show-date = true; clock-show-date = true;
clock-show-weekday = false; clock-show-weekday = false;
color-scheme = "prefer-dark"; color-scheme = "prefer-light";
document-font-name = "JetBrainsMonoNL Nerd Font 11";
font-antialiasing = "rgba"; font-antialiasing = "rgba";
font-hinting = "slight"; font-hinting = "slight";
font-name = "JetBrainsMonoNL Nerd Font Propo Thin 11"; gtk-theme = "${day-gtk-theme}";
gtk-theme = "Gruvbox-Dark-BL";
icon-theme = "${night-icon-theme}"; icon-theme = "${night-icon-theme}";
monospace-font-name = "JetBrainsMono Nerd Font 10"; monospace-font-name = "${font-mono}";
font-name = "${font}";
document-font-name = "${font-doc}";
show-battery-percentage = false; show-battery-percentage = false;
}; };
}; };
} }