1

Merge pull request #4 from lavafroth/dconf-settings

Add dconf key value pairs for GNOME GSettings
This commit is contained in:
Himadri Bhattacharjee
2023-12-09 10:49:51 +00:00
committed by GitHub
2 changed files with 21 additions and 2 deletions

View File

@@ -251,10 +251,10 @@
gnome-text-editor
gnome-tour
gnome.yelp
gnome-photos
gnome.totem
];
environment.variables = rec {
environment.variables = {
# Set the path for pkg-config to the openssl library
# so that we may compile projects that link to openssl.
# For example, a Rust project depending upon the openssl-sys crate.

View File

@@ -18,4 +18,23 @@
};
stateVersion = "23.11";
};
dconf.settings = {
# Did you know I'm a programmer?
"org/gnome/calculator" = {
button-mode = "programming";
show-thousands = true;
base = 10;
};
# Enable dark theme using adw-gtk3 to make GTK3 apps look coherent
"org/gnome/desktop/interface" = {
gtk-theme = "adw-gtk3-dark";
color-scheme = "prefer-dark";
};
"org/gnome/desktop/wm/keybindings" = {
close = [ "<Super>q" ];
};
};
}