nixos-config/hosts/hazel/disko.nix

33 lines
621 B
Nix
Raw Normal View History

2025-07-30 16:25:24 +02:00
{ inputs, ... }:
{
imports = [
inputs.disko.nixosModules.disko
];
disko.devices = {
disk = {
sda = {
2025-07-30 16:25:24 +02:00
device = "/dev/sda";
type = "disk";
content = {
2025-08-01 13:17:48 +02:00
type = "gpt";
2025-07-30 16:25:24 +02:00
partitions = {
2025-08-01 13:17:48 +02:00
boot = {
size = "1M";
type = "EF02";
priority = 1;
2025-07-30 16:25:24 +02:00
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
};
}