gnome: add gnome user settings
This commit is contained in:
parent
74b5ba8c13
commit
f396b3cfbd
3 changed files with 17 additions and 1 deletions
15
user/gnome.nix
Normal file
15
user/gnome.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{ pkgs, lib, ... }: lib.mkIf (pkgs.uservars.desktop == "gnome") {
|
||||
|
||||
dconf.settings = with pkgs; with uservars.theme; {
|
||||
"org/gnome/desktop/interface" = {
|
||||
gtk-theme = gtk_theme;
|
||||
icon-theme = icon_theme;
|
||||
cursor-theme = cursor_theme;
|
||||
color-scheme = "prefer-${color.type}";
|
||||
};
|
||||
"org/gnome/desktop/wm/preferences" = lib.mkForce {
|
||||
button-layout = "menu:close";
|
||||
};
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue