nixos-config/configs/nixos/plover/disko.nix

58 lines
1.3 KiB
Nix

{ ... }:
{
disko.devices = {
disk.primary = {
device = "/dev/sda";
type = "disk";
content = {
type = "gpt";
partitions = {
boot = {
start = "0";
end = "1MiB";
type = "EF02";
};
# You can't really have a btrfs-layered boot so this'll have to do.
ESP = {
priority = 1;
start = "1MiB";
end = "256MiB";
type = "EF00";
content = {
type = "filesystem";
mountpoint = "/boot";
format = "vfat";
};
};
root = {
size = "100%";
type = "8300";
content = {
type = "btrfs";
extraArgs = [ "-f" ];
subvolumes = {
"/root" = {
mountOptions = [ "compress=zstd:10" ];
mountpoint = "/";
};
"/home" = {
mountOptions = [ "compress=zstd:10" ];
mountpoint = "/home";
};
"/nix" = {
mountOptions = [ "compress=zstd:8" "noatime" "noacl" ];
mountpoint = "/nix";
};
};
};
};
};
};
};
};
}