nixos-config/hosts/hazel/disko.nix

38 lines
794 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 = {
type = "mbr";
2025-07-30 16:25:24 +02:00
partitions = {
ESP = {
type = "EF00";
size = "500M";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
mountOptions = [ "umask=0077" ];
};
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
};
}