1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-11 07:10:39 +02:00

feat: persist dconf

This commit is contained in:
oddlama 2023-09-14 19:52:29 +02:00
parent c4e9c34769
commit be9211f4f0
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
2 changed files with 6 additions and 7 deletions

View file

@ -19,6 +19,7 @@ in {
".cache/fontconfig" ".cache/fontconfig"
".cache/nix" # nix eval cache ".cache/nix" # nix eval cache
".cache/nix-index" ".cache/nix-index"
".config/dconf" # some apps store their configuration using dconf
] ]
++ optionals nixosConfig.hardware.nvidia.modesetting.enable [ ++ optionals nixosConfig.hardware.nvidia.modesetting.enable [
".cache/nvidia" # GLCache ".cache/nvidia" # GLCache

View file

@ -4,7 +4,7 @@
x11.enable = true; x11.enable = true;
package = pkgs.bibata-cursors; package = pkgs.bibata-cursors;
name = "Bibata-Modern-Ice"; name = "Bibata-Modern-Ice";
size = 32; size = 24;
}; };
xresources.properties = { xresources.properties = {
@ -40,7 +40,7 @@
}; };
theme = { theme = {
name = "WhiteSur-dark-solid"; name = "WhiteSur-Dark-solid";
package = pkgs.whitesur-gtk-theme; package = pkgs.whitesur-gtk-theme;
}; };
@ -49,12 +49,10 @@
gtk4.extraConfig = gtk34extraConfig; gtk4.extraConfig = gtk34extraConfig;
}; };
home.sessionVariables.GTK_THEME = "WhiteSur-Dark-solid";
qt = { qt = {
enable = true; enable = true;
platformTheme = "gnome"; platformTheme = "gtk";
style = {
name = "adwaita";
package = pkgs.adwaita-qt;
};
}; };
} }