make nix flake check work

This commit is contained in:
Kopatz
2024-11-26 16:15:19 +01:00
parent e265140d28
commit aa6b1d8cd2
9 changed files with 61 additions and 374 deletions

View File

@@ -14,4 +14,20 @@
graphics = true; # Boot the vm in a window.
};
};
boot = {
kernelParams = [ "console=tty0" "console=ttyS0" ];
loader.timeout = lib.mkForce 1;
loader.grub = {
efiSupport = true;
efiInstallAsRemovable = true;
device = "nodev";
};
};
fileSystems = {
"/" = {
device = "/dev/sda1";
fsType = "ext4";
};
};
}