nix/disko/default.nix

425 lines
12 KiB
Nix
Raw Permalink Normal View History

2024-09-04 10:31:06 -05:00
{lib, ...}: let
inherit (lib.attrsets) mapAttrs' filterAttrs;
2024-09-04 10:31:06 -05:00
in {
2024-07-17 20:22:16 -05:00
standardWithHibernateSwap = {
disks ? ["/dev/sda"],
swapSize,
...
}: {
# this is my standard partitioning scheme for my machines which probably want hibernation capabilities
# a UEFI-compatible boot partition
# it includes an LUKS-encrypted btrfs volume
# a swap partition big enough to dump all the machine's RAM into
disko.devices = {
disk = {
primary = {
type = "disk";
device = builtins.elemAt disks 0;
content = {
type = "gpt";
partitions = {
ESP = {
label = "EFI";
name = "ESP";
2024-07-17 20:34:36 -05:00
size = "4G";
2024-07-17 20:22:16 -05:00
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
mountOptions = [
"defaults"
];
};
};
swap = {
size = swapSize;
content = {
type = "swap";
discardPolicy = "both";
resumeDevice = true; # resume from hiberation from this device
};
};
luks = {
size = "100%";
content = {
type = "luks";
name = "crypted";
extraOpenArgs = ["--allow-discards"];
# if you want to use the key for interactive login be sure there is no trailing newline
# for example use `echo -n "password" > /tmp/secret.key`
keyFile = "/tmp/secret.key"; # Interactive
# settings.keyFile = "/tmp/password.key";
# additionalKeyFiles = ["/tmp/additionalSecret.key"];
content = {
type = "btrfs";
extraArgs = ["-f"];
subvolumes = {
"/nixos" = {
mountpoint = "/";
mountOptions = ["compress=zstd" "noatime"];
};
"/home" = {
mountpoint = "/home";
mountOptions = ["compress=zstd" "noatime"];
};
"/nix" = {
mountpoint = "/nix";
mountOptions = ["compress=zstd" "noatime"];
};
};
2024-07-17 20:22:16 -05:00
};
};
};
};
};
};
};
};
};
2023-10-03 11:52:44 -05:00
standard = {disks ? ["/dev/vda"], ...}: {
2023-09-05 15:33:20 -05:00
# this is my standard partitioning scheme for my machines: an LUKS-encrypted
# btrfs volume
disko.devices = {
disk = {
2023-10-02 14:40:35 -05:00
primary = {
type = "disk";
device = builtins.elemAt disks 0;
content = {
type = "gpt";
partitions = {
ESP = {
label = "EFI";
name = "ESP";
size = "512M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
mountOptions = [
"defaults"
];
};
};
luks = {
size = "100%";
content = {
type = "luks";
name = "crypted";
2023-10-03 11:52:44 -05:00
extraOpenArgs = ["--allow-discards"];
2023-10-02 14:40:35 -05:00
# if you want to use the key for interactive login be sure there is no trailing newline
# for example use `echo -n "password" > /tmp/secret.key`
keyFile = "/tmp/secret.key"; # Interactive
# settings.keyFile = "/tmp/password.key";
# additionalKeyFiles = ["/tmp/additionalSecret.key"];
content = {
type = "btrfs";
2023-10-03 11:52:44 -05:00
extraArgs = ["-f"];
2023-10-02 14:40:35 -05:00
subvolumes = {
"/root" = {
mountpoint = "/";
2023-10-03 11:52:44 -05:00
mountOptions = ["compress=zstd" "noatime"];
2023-10-02 14:40:35 -05:00
};
"/home" = {
mountpoint = "/home";
2023-10-03 11:52:44 -05:00
mountOptions = ["compress=zstd" "noatime"];
2023-10-02 14:40:35 -05:00
};
"/nix" = {
mountpoint = "/nix";
2023-10-03 11:52:44 -05:00
mountOptions = ["compress=zstd" "noatime"];
2023-10-02 14:40:35 -05:00
};
};
};
};
};
};
};
};
};
};
};
2024-09-04 10:31:06 -05:00
2023-10-03 11:52:44 -05:00
unencrypted = {disks ? ["/dev/vda"], ...}: {
2023-09-05 15:33:20 -05:00
disko.devices = {
disk = {
primary = {
type = "disk";
device = builtins.elemAt disks 0;
content = {
type = "gpt";
partitions = {
ESP = {
label = "EFI";
name = "ESP";
size = "512M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
mountOptions = [
"defaults"
];
};
};
root = {
size = "100%";
content = {
type = "btrfs";
2023-10-03 11:52:44 -05:00
extraArgs = ["-f"];
2023-09-05 15:33:20 -05:00
subvolumes = {
"/root" = {
mountpoint = "/";
2023-10-03 11:52:44 -05:00
mountOptions = [];
2023-09-05 15:33:20 -05:00
};
"/home" = {
mountpoint = "/home";
2023-10-03 11:52:44 -05:00
mountOptions = ["compress=zstd"];
2023-09-05 15:33:20 -05:00
};
"/nix" = {
mountpoint = "/nix";
2023-10-03 11:52:44 -05:00
mountOptions = ["compress=zstd" "noatime"];
2023-09-05 15:33:20 -05:00
};
};
};
};
};
};
};
};
2024-09-04 10:31:06 -05:00
};
};
2024-09-06 06:56:28 -05:00
beefcake = let
2024-09-04 10:31:06 -05:00
zpools = {
zroot = {
2024-09-06 06:56:28 -05:00
# TODO: at the time of writing, disko does not support draid6
# so I'm building/managing the array manually for the time being
# the root pool is just a single disk right now
2024-09-04 10:31:06 -05:00
name = "zroot";
config = {
type = "zpool";
2024-09-06 06:56:28 -05:00
# mode = "draid6";
2024-09-04 10:31:06 -05:00
rootFsOptions = {
compression = "zstd";
"com.sun:auto-snapshot" = "false";
};
mountpoint = "/";
postCreateHook = "zfs list -t snapshot -H -o name | grep -E '^zroot@blank$' || zfs snapshot zroot@blank";
datasets = {
zfs_fs = {
type = "zfs_fs";
mountpoint = "/zfs_fs";
options."com.sun:auto-snapshot" = "true";
};
zfs_unmounted_fs = {
type = "zfs_fs";
options.mountpoint = "none";
};
zfs_legacy_fs = {
type = "zfs_fs";
options.mountpoint = "legacy";
mountpoint = "/zfs_legacy_fs";
};
zfs_testvolume = {
type = "zfs_volume";
size = "10M";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/ext4onzfs";
};
};
encrypted = {
type = "zfs_fs";
options = {
mountpoint = "none";
encryption = "aes-256-gcm";
keyformat = "passphrase";
keylocation = "file:///tmp/secret.key";
};
# use this to read the key during boot
# postCreateHook = ''
# zfs set keylocation="prompt" "zroot/$name";
# '';
};
"encrypted/test" = {
type = "zfs_fs";
mountpoint = "/zfs_crypted";
};
};
};
};
zstorage = {
2024-09-06 08:39:30 -05:00
# PARITY_COUNT=3 NUM_DRIVES=8 HOT_SPARES=2 sudo -E zpool create -f -O mountpoint=none -O compression=on -O xattr=sa -O acltype=posixacl -o ashift=12 -O atime=off -O recordsize=64K zstorage draid{$PARITY_COUNT}:{$NUM_DRIVES}c:{$HOT_SPARES}s /dev/disk/by-id/scsi-35000039548cb637c /dev/disk/by-id/scsi-35000039548cb7c8c /dev/disk/by-id/scsi-35000039548cb85c8 /dev/disk/by-id/scsi-35000039548d9b504 /dev/disk/by-id/scsi-35000039548da2b08 /dev/disk/by-id/scsi-35000039548dad2fc /dev/disk/by-id/scsi-350000399384be921 /dev/disk/by-id/scsi-35000039548db096c
# sudo zfs create -o mountpoint=legacy zstorage/nix
# sudo zfs create -o canmount=on -o mountpoint=/storage zstorage/storage
2024-09-04 10:31:06 -05:00
name = "zstorage";
config = {};
};
};
diskClass = {
storage = {
type = "zfs";
pool = zpools.zroot.name;
};
boot = {
content = {
type = "gpt";
partitions = {
ESP = {
size = "1G";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
zfs = {
size = "100%";
content = {
type = "zfs";
pool = zpools.zroot.name;
};
};
};
};
};
};
bootDisks = {
"/dev/sdi" = {
name = "i";
enable = true;
};
"/dev/sdj" = {
name = "j";
enable = true;
}; # TODO: join current boot drive to new boot pool
};
storageDisks = {
"/dev/sda" = {
enable = true;
name = "a";
};
"/dev/sdb" = {
enable = true;
name = "b";
};
"/dev/sdc" = {
enable = true;
name = "c";
};
"/dev/sdd" = {
enable = true;
name = "d";
};
# TODO: start small
"/dev/sde" = {
enable = false;
name = "e";
};
"/dev/sdf" = {
enable = false;
name = "f";
};
"/dev/sdg" = {
enable = false;
name = "g";
};
"/dev/sdh" = {
enable = false;
name = "h";
};
# gap for two boot drives
"/dev/sdk" = {
enable = false;
name = "k";
};
"/dev/sdl" = {
enable = false;
name = "l";
};
"/dev/sdm" = {
enable = false;
name = "m";
};
"/dev/sdn" = {
# TODO: this is my holding cell for random stuff right now
2024-09-04 10:31:06 -05:00
enable = false;
name = "n";
};
};
diskoBoot = mapAttrs' (device: {name, ...}: {
name = "boot-${name}";
value = {
inherit device;
type = "disk";
content = diskClass.boot.content;
};
}) (filterAttrs (_: {enable, ...}: enable) bootDisks);
diskoStorage = mapAttrs' (device: {name, ...}: {
name = "storage-${name}";
value = {
inherit device;
type = "disk";
content = diskClass.storage.content;
};
}) (filterAttrs (_: {enable, ...}: enable) storageDisks);
in {
disko.devices = {
disk = diskoBoot // diskoStorage;
2024-09-04 10:31:06 -05:00
zpool = {
zroot = zpools.zroot.config;
};
2023-09-05 15:33:20 -05:00
};
};
2023-10-06 10:42:19 -05:00
legacy = {disks ? ["/dev/vda"], ...}: {
disko.devices = {
disk = {
primary = {
device = builtins.elemAt disks 0;
type = "disk";
content = {
type = "table";
format = "gpt";
partitions = [
{
2024-01-06 11:43:30 -06:00
label = "EFI";
2023-10-06 10:42:19 -05:00
name = "ESP";
2024-01-06 11:43:30 -06:00
size = "512M";
2023-10-06 10:42:19 -05:00
bootable = true;
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
}
{
name = "root";
start = "500M";
end = "100%";
part-type = "primary";
bootable = true;
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
}
];
};
};
};
};
};
2023-09-05 15:33:20 -05:00
}