Move Mac keys into its own Nix file

This commit is contained in:
Jimbo 2024-08-27 13:30:48 -04:00
parent a15a93a317
commit 2552eefc61
4 changed files with 11 additions and 9 deletions

View file

@ -55,11 +55,6 @@ in {
ntfs = true;
zfs = lib.mkForce false;
};
# Modprobe settings
extraModprobeConfig = ''
options hid_apple fnmode=2
'';
};
# Additional entry to boot from the second GPU

View file

@ -0,0 +1,6 @@
{
# Forces the function keys to work right on Macbooks
boot.extraModprobeConfig = ''
options hid_apple fnmode=2
'';
}