new device

This commit is contained in:
danny 2025-09-18 10:20:29 +08:00
parent a565033341
commit 5d101ab266
14 changed files with 292 additions and 17 deletions

View file

@ -0,0 +1,14 @@
{ pkgs, ... }:
{
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.loader.systemd-boot.enable = true;
# Enable F keys in some wireless keyboard (Ex. neo65)
boot.extraModprobeConfig = ''
options hid_apple fnmode=2
'';
boot.initrd.systemd.enable = true;
boot.initrd.kernelModules = [ "i915" ];
}