nix-configs

Personal NixOS and home-manager configuration files
Log | Files | Refs

commit db613a9c8d351aa7827dfde906dc494ebb56c3c1
parent 95bf950007a56cbe1da0acb3b652d21aae717c80
Author: Peter <peter@minskio.co.uk>
Date:   Sat, 25 Oct 2025 09:34:36 +0100

Add optional numlock support for hyprland

Diffstat:
Ahome/hyprland-numlock.nix | 8++++++++
Mmachines/atlas.nix | 1+
2 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/home/hyprland-numlock.nix b/home/hyprland-numlock.nix @@ -0,0 +1,8 @@ +{ lib, ... }: +{ + wayland.windowManager.hyprland.settings.input = lib.mkMerge [ + { + numlock_by_default = true; + } + ]; +} diff --git a/machines/atlas.nix b/machines/atlas.nix @@ -46,6 +46,7 @@ in (import ../home/fish.nix {inherit pkgs domain;}) (import ../home/git.nix {inherit fullname email;}) ../home/htop.nix + ../home/hyprland-numlock.nix ../home/hyprland.nix (import ../home/iamb.nix {inherit matrixuser matrixserver;}) ../home/lf.nix