kholinar: Configure a bootloader...
All checks were successful
Cachix / build (elendel) (push) Successful in 1m17s
Cachix / build (kholinar) (push) Successful in 2m4s
Cachix / build (lasting-integrity) (push) Successful in 1m8s
Cachix / build (marabethia) (push) Successful in 1m21s
Cachix / build (urithiru) (push) Successful in 1m20s

This commit is contained in:
Charlotte Van Petegem 2024-12-03 10:57:12 +01:00
parent 37e4be016c
commit 7fcd2cfede

View file

@ -4,7 +4,10 @@
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
boot = {
loader.efi.canTouchEfiVariables = true;
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
initrd = {
availableKernelModules = [ "xhci_pci" "nvme" "usbhid" "usb_storage" "sd_mod" "sdhci_pci" ];
kernelModules = [ "i915" ];
@ -19,9 +22,6 @@
chvp.base.nix.unfreePackages = [ "displaylink" ];
# For Secure Boot management
environment.systemPackages = [ pkgs.sbctl ];
fileSystems."/" = {
device = "rpool/local/root";
fsType = "zfs";