Update home.nix
This commit is contained in:
parent
8212853402
commit
fc62e96d80
1 changed files with 37 additions and 30 deletions
|
|
@ -12,16 +12,25 @@
|
|||
];
|
||||
|
||||
# --- GNOME/dconf Settings via Home Manager ---
|
||||
# This section replaces the troublesome 'systemd.user.services.gnomeSettings' script!
|
||||
dconf.settings = {
|
||||
# Interface / theme (Example from your script)
|
||||
# Interface / theme
|
||||
"org/gnome/desktop/interface" = {
|
||||
color-scheme = "prefer-dark";
|
||||
gtk-theme = "Adwaita-dark";
|
||||
# accent-color is not directly exposed via dconf in this way
|
||||
};
|
||||
|
||||
# Custom keybindings (Example from your script)
|
||||
# Window manager keybindings
|
||||
"org/gnome/desktop/wm/keybindings" = {
|
||||
close = ["<Super>q"];
|
||||
toggle-fullscreen = ["<Super>f"];
|
||||
};
|
||||
|
||||
# Shell keybindings
|
||||
"org/gnome/shell/keybindings" = {
|
||||
show-screenshot-ui = ["<Shift><Super>s"];
|
||||
};
|
||||
|
||||
# Custom keybindings
|
||||
"org/gnome/settings-daemon/plugins/media-keys" = {
|
||||
home = ["<Super>e"];
|
||||
control-center = ["<Super>i"];
|
||||
|
|
@ -36,12 +45,10 @@
|
|||
binding = "<Super>t";
|
||||
};
|
||||
|
||||
# Mouse acceleration (Example from your script)
|
||||
# Mouse acceleration
|
||||
"org/gnome/desktop/peripherals/mouse" = {
|
||||
accel-profile = "flat";
|
||||
};
|
||||
|
||||
# You can add many more settings here, like wallpaper, etc.
|
||||
};
|
||||
|
||||
# --- Aliases (Moved from system-wide common.nix) ---
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue