Merge pull request #4 from lavafroth/dconf-settings
Add dconf key value pairs for GNOME GSettings
This commit is contained in:
@@ -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.
|
||||
|
||||
19
home.nix
19
home.nix
@@ -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" ];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user