cfg/host/fw/disko.nix
2025-10-10 19:29:55 +02:00

97 lines
1.9 KiB
Nix

let
rootfs = {
type = "btrfs";
extraArgs = [
"-f"
"-L"
"nixroot"
];
subvolumes = {
"/root" = {
mountpoint = "/";
mountOptions = [
"compress=zstd"
"noatime"
];
};
"/home" = {
mountpoint = "/home";
mountOptions = [
"compress=zstd"
"noatime"
];
};
"/nix" = {
mountpoint = "/nix";
mountOptions = [
"compress=zstd"
"noatime"
];
};
};
};
in
{
disko.devices = {
disk = {
main = {
type = "disk";
device = "/dev/nvme0n1";
content = {
type = "gpt";
partitions = {
boot = {
size = "1M";
type = "EF02";
};
ESP = {
size = "1G";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
mountOptions = [ "umask=0077" ];
};
};
luks = {
size = "100%";
label = "crypt";
content = {
type = "luks";
name = "cryptlvm";
settings = {
allowDiscards = true;
};
content = {
type = "lvm_pv";
vg = "pool";
};
};
};
};
};
};
};
lvm_vg = {
pool = {
type = "lvm_vg";
lvs = {
root = {
size = "100%";
content = rootfs;
};
swap = {
size = "48G";
content = {
extraArgs = [ "-L nixswap" ];
type = "swap";
resumeDevice = true;
};
};
};
};
};
};
}