This repository has been archived on 2026-07-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
nixos/modules/disko/proxmox.nix
T
beatzaplenty 7bfe8cb0b2
Check NixOS configurations / eval-hosts (push) Failing after 14m31s
added disko configuration to remove disk formatting from auto installer
2026-07-15 07:30:32 +10:00

44 lines
752 B
Nix

{ ... }:
{
disko.devices = {
disk.main = {
type = "disk";
device = "/dev/sda";
content = {
type = "gpt";
partitions = {
root = {
priority = 1;
size = "-8G";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
extraArgs = [
"-L"
"nixos"
];
};
};
swap = {
priority = 2;
size = "100%";
content = {
type = "swap";
extraArgs = [
"-L"
"swap"
];
};
};
};
};
};
};
}