20 lines
591 B
Nix
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;
|
|
};
|
|
};
|
|
}
|