nixos-config/nixos/machines/chungus/disko-config.nix

216 lines
5.9 KiB
Nix
Raw Normal View History

2023-04-28 23:30:11 +02:00
# nix run github:nix-community/disko -- --mode zap_create_mount ./disko-config.nix
# nixos-generate-config --no-filesystems --root /mnt
2023-04-27 22:43:52 +02:00
# vim /mnt/configuration.nix
2023-04-29 23:29:05 +02:00
# nixos-install
2023-04-28 12:57:48 +02:00
{ ... }:
2023-04-28 09:02:11 +02:00
let
raid_disks = {
"TOSHIBA_1360A003FVGG" = "/dev/disk/by-id/ata-TOSHIBA_MG08ACA16TE_1360A003FVGG";
"TOSHIBA_1360A00BFVGG" = "/dev/disk/by-id/ata-TOSHIBA_MG08ACA16TE_1360A00BFVGG";
"TOSHIBA_1360A00VFVGG" = "/dev/disk/by-id/ata-TOSHIBA_MG08ACA16TE_1360A00VFVGG";
"TOSHIBA_41R0A0EBF57H" = "/dev/disk/by-id/ata-TOSHIBA_MG08ACA16TE_41R0A0EBF57H";
"TOSHIBA_5120A03WF57H" = "/dev/disk/by-id/ata-TOSHIBA_MG08ACA16TE_5120A03WF57H";
};
in
{
2023-04-27 22:43:52 +02:00
disko.devices = {
disk = {
root = {
type = "disk";
device = "/dev/nvme0n1";
content = {
type = "table";
format = "gpt";
partitions = [
{
name = "ESP";
start = "0";
end = "500MiB";
bootable = true;
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
mountOptions = [
"defaults"
];
};
}
{
name = "zfs";
start = "500MiB";
end = "100%";
content = {
type = "luks";
name = "root";
content = {
type = "zfs";
pool = "zroot";
};
};
}
];
};
};
2023-04-28 12:57:48 +02:00
} // builtins.mapAttrs
(name: device_path: {
type = "disk";
device = device_path;
content = {
type = "table";
format = "gpt";
partitions = [
{
name = "zfs";
start = "0";
end = "100%";
content = {
type = "luks";
name = "raid_${name}";
content = {
type = "zfs";
pool = "zraid";
};
};
}
];
};
}
2023-04-27 22:43:52 +02:00
)
raid_disks;
zpool = {
zroot = {
type = "zpool";
rootFsOptions = {
mountpoint = "none";
canmount = "off";
compression = "lz4";
};
2023-04-27 22:43:52 +02:00
datasets = {
"root" = {
type = "zfs_fs";
mountpoint = "/";
2023-04-30 00:47:46 +02:00
options = {
mountpoint = "legacy";
2023-04-30 00:47:46 +02:00
compression = "lz4";
};
2023-04-27 22:43:52 +02:00
};
};
};
2023-05-02 19:22:17 +02:00
# `zpool import -f zraid` once on the first boot and reboot
2023-04-27 22:43:52 +02:00
zraid = {
type = "zpool";
mode = "raidz2";
2023-04-30 00:47:46 +02:00
rootFsOptions = {
mountpoint = "none";
canmount = "off";
};
2023-04-27 22:43:52 +02:00
datasets = {
"media" = {
type = "zfs_fs";
mountpoint = "/media";
2023-04-30 00:47:46 +02:00
options = {
mountpoint = "legacy";
2023-04-30 00:47:46 +02:00
compression = "lz4";
2023-05-03 16:09:27 +02:00
"com.sun:auto-snapshot:daily" = true;
"com.sun:auto-snapshot:weekly" = true;
"com.sun:auto-snapshot:montly" = true;
2023-04-30 00:47:46 +02:00
};
2023-04-27 22:43:52 +02:00
};
2023-04-30 00:47:46 +02:00
"nextcloud" = {
2023-04-27 22:43:52 +02:00
type = "zfs_fs";
2023-04-30 00:47:46 +02:00
mountpoint = "/nextcloud";
2023-04-27 22:43:52 +02:00
options = {
mountpoint = "legacy";
2023-04-28 12:57:48 +02:00
compression = "lz4";
2023-05-03 16:09:27 +02:00
"com.sun:auto-snapshot:hourly" = true;
"com.sun:auto-snapshot:daily" = true;
"com.sun:auto-snapshot:weekly" = true;
"com.sun:auto-snapshot:montly" = true;
2023-04-27 22:43:52 +02:00
};
};
"legacy" = {
type = "zfs_fs";
mountpoint = "/legacy";
options = {
mountpoint = "legacy";
compression = "lz4";
2023-05-03 16:09:27 +02:00
"com.sun:auto-snapshot:montly" = true;
};
};
2023-04-30 00:47:46 +02:00
"borg" = {
type = "zfs_fs";
mountpoint = "/borg";
options = {
mountpoint = "legacy";
2023-04-30 00:47:46 +02:00
compression = "lz4";
2023-05-03 16:09:27 +02:00
"com.sun:auto-snapshot:daily" = true;
"com.sun:auto-snapshot:weekly" = true;
"com.sun:auto-snapshot:montly" = true;
2023-04-30 00:47:46 +02:00
};
};
2023-05-02 12:55:17 +02:00
"services" = {
type = "zfs_fs";
mountpoint = "/srv";
options = {
mountpoint = "legacy";
compression = "lz4";
2023-05-03 16:09:27 +02:00
"com.sun:auto-snapshot:daily" = true;
"com.sun:auto-snapshot:weekly" = true;
"com.sun:auto-snapshot:montly" = true;
2023-05-02 12:55:17 +02:00
};
};
"services/gitea" = {
type = "zfs_fs";
mountpoint = "/srv/gitea";
options = {
mountpoint = "legacy";
compression = "lz4";
};
};
2023-05-05 09:49:58 +02:00
"container" = {
type = "zfs_fs";
mountpoint = "/var/lib/containers/storage"; # needed for podman
options = {
mountpoint = "legacy";
compression = "lz4";
acltype = "posixacl"; # needed for podman
};
};
2023-05-03 16:09:27 +02:00
"robi" = {
type = "zfs_fs";
mountpoint = "/robi";
options = {
mountpoint = "legacy";
compression = "lz4";
"com.sun:auto-snapshot:daily" = true;
"com.sun:auto-snapshot:weekly" = true;
};
};
"robi/media" = {
type = "zfs_fs";
mountpoint = "/robi/media";
options = {
mountpoint = "legacy";
compression = "lz4";
};
};
"robi/torrent" = {
type = "zfs_fs";
mountpoint = "/robi/torrent";
options = {
mountpoint = "legacy";
compression = "lz4";
};
};
2023-04-27 22:43:52 +02:00
};
};
};
};
}