gnome: set text scaling, favorite apps default values

This commit is contained in:
colin 2022-05-23 03:06:54 -07:00
parent b11fcebd5b
commit a164290e93

View File

@ -40,6 +40,7 @@
'';
};
# obtain these by running `dconf dump /` after manually customizing gnome
dconf.settings = lib.mkIf (gui == "gnome") {
# control alt-tab behavior
"org/gnome/desktop/wm/keybindings" = {
@ -54,6 +55,16 @@
sleep-inactive-ac-type = "nothing";
sleep-inactive-battery-timeout = 5400; # seconds
};
"org/gnome/shell" = {
favorite-apps = ["org.gnome.Nautilus.desktop" "firefox.desktop" "org.gnome.Terminal.desktop"];
};
"org/gnome/desktop/session" = {
# how long until considering a session idle (triggers e.g. screen blanking)
idle-delay = 900;
};
"org/gnome/desktop/interface" = {
text-scaling-factor = 1.25;
};
};
programs.firefox = lib.mkIf (gui != null) {