Enable numlock in initrd

This commit is contained in:
ItsDrike 2024-06-21 02:15:38 +02:00
parent 7a79342f93
commit 0699de3cbe
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
2 changed files with 33 additions and 0 deletions

View file

@ -4,6 +4,7 @@ _: {
./generic.nix
./secure-boot.nix
./initrd.nix
./numlock.nix
./plymouth.nix
];
}

View file

@ -0,0 +1,32 @@
{ pkgs, ... }: {
boot.initrd.systemd = {
# Include setleds binary in the initrd
# (the nix store doesn't exists in there yet, so we need to include
# all of the necessary binaries ahead of time here)
extraBin = {
setleds = "${pkgs.kbd}/bin/setleds";
};
# Enable numlock in the early userspace (initrd)
# This will happen before we're asked for the disk decryption password
services."numlock" = {
enable = true;
description = "Activate Numlock";
wantedBy = [ "initrd.target" ];
# Delay disk decryption until this unit is started
before = [ "systemd-cryptsetup@cryptfs.service" ];
unitConfig.DefaultDependencies = "no";
serviceConfig.Type = "oneshot";
# This is essentially runs the same code as present in the
# mkinitcpio-numlock hook on Arch Linux (AUR).
script = ''
#!/bin/bash
for tty in /dev/tty{1..6}
do
/bin/setleds -D +num < "$tty";
done
'';
};
};
}