1
0
Fork 0
nix-configuration/modules/users/common/home-manager/gnome.nix

63 lines
1.7 KiB
Nix
Raw Normal View History

2024-08-02 17:55:48 -04:00
{ lib, osConfig, ... }:
{
# Additional Gnome configurations via home-manager.
dconf.settings = lib.mkIf osConfig.aux.system.ui.desktops.gnome.enable {
"org/gnome/mutter" = {
edge-tiling = true;
workspaces-only-on-primary = false;
experimental-features = [
"scale-monitor-framebuffer" # Fractional scaling
"variable-refresh-rate"
];
};
2024-02-29 09:53:34 -05:00
"org/gnome/desktop/interface" = {
# Configure fonts
font-name = "Fira Sans Semi-Light 11";
document-font-name = "Roboto Slab 11";
monospace-font-name = "Liberation Mono 11";
titlebar-font = "Fira Sans Semi-Bold 11";
2024-02-29 09:53:34 -05:00
# Configure hinting
font-hinting = "slight";
font-antialiasing = "rgba";
2024-02-29 09:53:34 -05:00
# Configure workspace
enable-hot-corners = true;
2024-03-21 10:59:16 -04:00
# Set icon theme
icon-theme = "Papirus-Dark";
2024-03-21 10:59:16 -04:00
# Set legacy application theme
gtk-theme = "Adwaita-dark";
};
2024-02-29 09:53:34 -05:00
# Configure touchpad scroll & tap behavior
"org/gnome/desktop/peripherals/touchpad" = {
disable-while-typing = true;
click-method = "fingers";
tap-to-click = true;
natural-scroll = true;
two-finger-scrolling-enabled = true;
};
2024-02-29 09:53:34 -05:00
# Tweak window management
"org/gnome/desktop/wm/preferences" = {
button-layout = "appmenu:minimize,maximize,close";
resize-with-right-button = true;
focus-mode = "click";
};
2024-02-29 09:53:34 -05:00
# Make alt-tab switch windows, not applications
"org/gnome/desktop/wm/keybindings" = {
switch-tab = [ ];
switch-windows = [ "<Alt>Tab" ];
switch-windows-backward = [ "<Shift><Alt>Tab" ];
};
2024-02-29 09:53:34 -05:00
"org/gnome/shell" = {
disable-user-extensions = false;
};
};
2024-02-29 09:53:34 -05:00
}