Compare commits

..

No commits in common. "61885e6e822f82c1b8afdbff1a9ad23024fda5cf" and "bdeca8d6fe8cc72234a1c3d13a93bb62a54c199d" have entirely different histories.

3 changed files with 38 additions and 1 deletions

BIN
infra/architecture.pdf Normal file

Binary file not shown.

View file

@ -22,4 +22,41 @@
}; };
}; };
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.nixpkgs}/nixos/modules/virtualisation/proxmox-image.nix" inputs.disko.nixosModules.default
./options.nix ./options.nix
./nixos ./nixos
]; ];