nix-config/home/gnome.nix
2026-05-07 17:49:50 +02:00

20 lines
591 B
Nix

{
dconf.enable = true;
dconf.settings = {
"org/gnome/desktop/wm/keybindings" = {
switch-applications = [ "<Super>Tab" ];
switch-applications-backward = [ "<Shift><Super>Tab" ];
switch-windows = [ "<Alt>Tab" ];
switch-windows-backward = [ "<Shift><Alt>Tab" ];
};
"org/gnome/desktop/wm/preferences" = {
resize-with-right-button = true;
button-layout = ":minimize,maximize,close";
};
"org/gnome/desktop/interface" = {
accent-color = "red";
color-scheme = "prefer-dark";
show-battery-percentage = true;
};
};
}