fix: oopsie overwrote boot.availableKernelModules

This commit is contained in:
oddlama 2023-09-28 18:19:37 +02:00
parent 8fb6b63e6f
commit 68af1be607
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
2 changed files with 8 additions and 3 deletions

View file

@ -31,6 +31,7 @@
];
boot.initrd.availableKernelModules = ["xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod"];
boot.binfmt.emulatedSystems = ["aarch64-linux"];
}
// lib.optionalAttrs (!minimal) {
# TODO goodbye once -sk keys.
@ -39,13 +40,12 @@
export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
'';
boot.binfmt.emulatedSystems = ["aarch64-linux"];
graphical.gaming.enable = true;
stylix.fonts.sizes = {
#desktop = 20;
applications = 10;
terminal = 20;
#popups = 20;
popups = 20;
};
}

View file

@ -51,5 +51,10 @@
};
};
system.stateVersion = "23.11";
system = {
extraSystemBuilderCmds = ''
ln -sv ${inputs.nixpkgs} $out/nixpkgs
'';
stateVersion = "23.11";
};
}