test
This commit is contained in:
parent
1ba61ab9d1
commit
03fe2365a8
2 changed files with 19 additions and 6 deletions
|
@ -1,3 +1,16 @@
|
||||||
{
|
# Generated via dconf2nix: https://github.com/gvolpe/dconf2nix
|
||||||
|
{ lib, hostname, username, ... }: with lib.hm.gvariant;
|
||||||
|
let
|
||||||
|
# Day Variant
|
||||||
|
day-wallpaper = "file:///etc/nixos/git/wallpapers/default/wallpaper1.jpg";
|
||||||
|
# Night Variant
|
||||||
|
night-wallpaper = "file:///etc/nixos/git/wallpapers/default/wallpaper1.jpg";
|
||||||
|
in {
|
||||||
|
# Gnome DCONF Settings
|
||||||
|
dconf.settings = {
|
||||||
|
"org/gnome/desktop/background" = {
|
||||||
|
picture-uri = "${day-wallpaper}";
|
||||||
|
picture-uri-dark = "${night-wallpaper}";
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
|
@ -2,13 +2,13 @@
|
||||||
{ lib, hostname, username, ... }: with lib.hm.gvariant;
|
{ lib, hostname, username, ... }: with lib.hm.gvariant;
|
||||||
let
|
let
|
||||||
# Day Variant
|
# Day Variant
|
||||||
day-wallpaper = "file:///etc/nixos/git/wallpapers/gruvbox/wallpaper10.jpg";
|
day-wallpaper = "file:///etc/nixos/git/wallpapers/gruvbox/wallpaper3.jpg";
|
||||||
day-gtk-theme = "vimix-doder";
|
day-gtk-theme = "vimix-doder";
|
||||||
day-shell-theme = "vimix-doder";
|
day-shell-theme = "vimix-doder";
|
||||||
day-icon-theme = "Vimix-Doder";
|
day-icon-theme = "Vimix-Doder";
|
||||||
|
|
||||||
# Night Variant
|
# Night Variant
|
||||||
night-wallpaper = "file:///etc/nixos/git/wallpapers/gruvbox/wallpaper11.jpg";
|
night-wallpaper = "file:///etc/nixos/git/wallpapers/gruvbox/wallpaper2.jpg";
|
||||||
night-gtk-theme = "Gruvbox-Dark-BL";
|
night-gtk-theme = "Gruvbox-Dark-BL";
|
||||||
night-shell-theme = "Gruvbox-Dark-BL";
|
night-shell-theme = "Gruvbox-Dark-BL";
|
||||||
night-icon-theme = "Nordzy-yellow-dark";
|
night-icon-theme = "Nordzy-yellow-dark";
|
||||||
|
@ -50,7 +50,7 @@ in {
|
||||||
font-hinting = "slight";
|
font-hinting = "slight";
|
||||||
font-name = "JetBrainsMonoNL Nerd Font Propo Thin 11";
|
font-name = "JetBrainsMonoNL Nerd Font Propo Thin 11";
|
||||||
gtk-theme = "Gruvbox-Dark-BL";
|
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 = "JetBrainsMono Nerd Font 10";
|
||||||
show-battery-percentage = false;
|
show-battery-percentage = false;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue