kill disko

systemd-boot requires 'ovmf' bios
This commit is contained in:
Kiara Grouwstra 2025-04-21 16:20:15 +02:00
parent 6fcae1c48c
commit 61885e6e82
Signed by: kiara
SSH key fingerprint: SHA256:COspvLoLJ5WC5rFb9ZDe5urVCkK4LJZOsjfF4duRJFU
2 changed files with 1 additions and 38 deletions

View file

@ -22,41 +22,4 @@
}; };
}; };
disko.devices.disk.main = {
device = "/dev/sda";
type = "disk";
content = {
type = "gpt";
partitions = {
MBR = {
priority = 0;
size = "1M";
type = "EF02";
};
ESP = {
priority = 1;
size = "500M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
root = {
priority = 2;
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
} }

View file

@ -33,7 +33,7 @@ in
nixos.module = { nixos.module = {
imports = [ imports = [
inputs.agenix.nixosModules.default inputs.agenix.nixosModules.default
inputs.disko.nixosModules.default "${inputs.nixpkgs}/nixos/modules/virtualisation/proxmox-image.nix"
./options.nix ./options.nix
./nixos ./nixos
]; ];