enable numlock on start for gnome

This commit is contained in:
Vinzenz Schroeter 2023-09-09 12:39:22 +02:00
parent 2dd3032a02
commit 9582ea3119

View file

@ -32,14 +32,27 @@
pkgs.gnome-connections pkgs.gnome-connections
]; ];
home-manager.users.vinzenz = { home-manager.users = {
config, vinzenz = {pkgs, ...}: {
pkgs, home.packages = with pkgs; [
... gnome.gpaste
}: { amberol
home.packages = with pkgs; [ ];
gnome.gpaste
amberol dconf.settings = {
]; "org/gnome/desktop/peripherals/keyboard" = {
numlock-state = true;
};
};
};
gdm = {...}: {
home.stateVersion = "23.05";
dconf.settings = {
"org/gnome/desktop/peripherals/keyboard" = {
numlock-state = true;
};
};
};
}; };
} }