shell customization

This commit is contained in:
2024-09-01 16:08:07 +02:00
parent c368538b2e
commit e45a05d026
4 changed files with 148 additions and 18 deletions

View File

@@ -2,10 +2,11 @@
with lib.hm.gvariant;
{
imports = [
#../modules/home-manager/gnome-shell-customization.nix
../modules/home-manager/fish.nix
../modules/home-manager/browser.nix
../modules/home-manager/code.nix
../modules/home-manager/flatpaks.nix
../modules/home-manager/gnome-shell-customization.nix
];
## Home Manager configuration
@@ -27,7 +28,7 @@ with lib.hm.gvariant;
};
## Gnome settings
## Gnome keyboard and mouse settings
dconf.settings = {
# set the keyboard layout to german
"org/gnome/desktop/input-sources" = {
@@ -35,5 +36,20 @@ with lib.hm.gvariant;
sources = [ (mkTuple [ "xkb" "de" ]) (mkTuple [ "xkb" "ch" ]) (mkTuple [ "xkb" "us" ]) ];
xkb-options = [ "lv3:ralt_switch" ];
};
"org/gnome/desktop/peripherals/keyboard" = {
numlock-state = true;
}
"org/gnome/desktop/peripherals/mouse" = {
natural-scroll = false;
speed = 0.20851063829787231;
}
"org/gnome/desktop/peripherals/touchpad" = {
tap-to-click = true;
two-finger-scrolling-enabled = true;
speed = 0.16872427983539096;
}
};
}