Separate systemdboot config

This commit is contained in:
Jimbo 2024-08-25 07:45:05 -04:00
parent 735a920892
commit f1d2652c53
5 changed files with 9 additions and 12 deletions

View file

@ -19,6 +19,7 @@
# Hardware # Hardware
./hardware/machines/desktop.nix ./hardware/machines/desktop.nix
./hardware/systemdboot.nix
./hardware/nvidia.nix ./hardware/nvidia.nix
./hardware/opengl.nix ./hardware/opengl.nix

View file

@ -66,12 +66,6 @@ in {
extraModprobeConfig = '' extraModprobeConfig = ''
options hid_apple fnmode=2 options hid_apple fnmode=2
''; '';
# Use the Systemd-Boot bootloader
loader.systemd-boot = {
enable = true;
netbootxyz.enable = true;
};
}; };
# Additional entry to boot from the second GPU # Additional entry to boot from the second GPU

View file

@ -22,12 +22,6 @@
"kvm-intel" "kvm-intel"
]; ];
}; };
# Use the Systemd-Boot bootloader
loader.systemd-boot = {
enable = true;
netbootxyz.enable = true;
};
}; };
# Mounting options # Mounting options

View file

@ -0,0 +1,7 @@
{
# For UEFI Machines
boot.loader.systemd-boot = {
enable = true;
netbootxyz.enable = true;
};
}

View file

@ -13,6 +13,7 @@
# Hardware # Hardware
./hardware/machines/server.nix ./hardware/machines/server.nix
./hardware/systemdboot.nix
# Services # Services
./services/openssh.nix ./services/openssh.nix