replace with real hardware configs

This commit is contained in:
Lars Nolden
2026-06-26 17:01:28 +02:00
parent 7579d4dcf5
commit 30b325393a
9 changed files with 144 additions and 29 deletions
+10
View File
@@ -3,6 +3,16 @@
{
system.stateVersion = "26.05";
# Bootloader. The disko layout (hardware-configurations/disk-config.nix) lays
# down both a BIOS-boot (EF02) partition and an ESP mounted at /boot, so grub
# works whether the VM firmware is legacy BIOS or UEFI. disko fills in
# boot.loader.grub.devices from the EF02 partition; we just enable grub here.
boot.loader.grub = {
enable = true;
efiSupport = true;
efiInstallAsRemovable = true;
};
nix.settings = {
experimental-features = [ "nix-command" "flakes" ];
trusted-users = [ "@wheel" "deploy" ];