226 lines
6.2 KiB
Nix
226 lines
6.2 KiB
Nix
# nix run github:nix-community/disko -- --mode zap_create_mount ./disko-config.nix
|
|
# nixos-generate-config --no-filesystems --root /mnt
|
|
# vim /mnt/configuration.nix
|
|
# nixos-install
|
|
{ ... }:
|
|
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
|
|
{
|
|
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";
|
|
};
|
|
};
|
|
}
|
|
];
|
|
};
|
|
};
|
|
} // 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";
|
|
};
|
|
};
|
|
}
|
|
];
|
|
};
|
|
}
|
|
)
|
|
raid_disks;
|
|
|
|
zpool = {
|
|
|
|
zroot = {
|
|
type = "zpool";
|
|
rootFsOptions = {
|
|
mountpoint = "none";
|
|
canmount = "off";
|
|
compression = "lz4";
|
|
};
|
|
datasets = {
|
|
"root" = {
|
|
type = "zfs_fs";
|
|
mountpoint = "/";
|
|
options = {
|
|
mountpoint = "legacy";
|
|
compression = "lz4";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
# `zpool import -f zraid` once on the first boot and reboot
|
|
zraid = {
|
|
type = "zpool";
|
|
mode = "raidz2";
|
|
rootFsOptions = {
|
|
mountpoint = "none";
|
|
canmount = "off";
|
|
};
|
|
datasets = {
|
|
"media" = {
|
|
type = "zfs_fs";
|
|
mountpoint = "/media";
|
|
options = {
|
|
mountpoint = "legacy";
|
|
compression = "lz4";
|
|
"com.sun:auto-snapshot:daily" = true;
|
|
"com.sun:auto-snapshot:weekly" = true;
|
|
"com.sun:auto-snapshot:monthly" = true;
|
|
};
|
|
};
|
|
"nextcloud" = {
|
|
type = "zfs_fs";
|
|
mountpoint = "/nextcloud";
|
|
options = {
|
|
mountpoint = "legacy";
|
|
compression = "lz4";
|
|
"com.sun:auto-snapshot:hourly" = true;
|
|
"com.sun:auto-snapshot:daily" = true;
|
|
"com.sun:auto-snapshot:weekly" = true;
|
|
"com.sun:auto-snapshot:monthly" = true;
|
|
};
|
|
};
|
|
"legacy" = {
|
|
type = "zfs_fs";
|
|
mountpoint = "/legacy";
|
|
options = {
|
|
mountpoint = "legacy";
|
|
compression = "lz4";
|
|
"com.sun:auto-snapshot:monthly" = true;
|
|
};
|
|
};
|
|
"borg" = {
|
|
type = "zfs_fs";
|
|
mountpoint = "/borg";
|
|
options = {
|
|
mountpoint = "legacy";
|
|
compression = "lz4";
|
|
"com.sun:auto-snapshot:daily" = true;
|
|
"com.sun:auto-snapshot:weekly" = true;
|
|
"com.sun:auto-snapshot:monthly" = true;
|
|
};
|
|
};
|
|
"syncthing" = {
|
|
type = "zfs_fs";
|
|
mountpoint = "/syncthing";
|
|
options = {
|
|
mountpoint = "legacy";
|
|
compression = "lz4";
|
|
"com.sun:auto-snapshot:daily" = true;
|
|
"com.sun:auto-snapshot:weekly" = true;
|
|
"com.sun:auto-snapshot:monthly" = true;
|
|
};
|
|
};
|
|
"services" = {
|
|
type = "zfs_fs";
|
|
mountpoint = "/srv";
|
|
options = {
|
|
mountpoint = "legacy";
|
|
compression = "lz4";
|
|
"com.sun:auto-snapshot:daily" = true;
|
|
"com.sun:auto-snapshot:weekly" = true;
|
|
"com.sun:auto-snapshot:montly" = true;
|
|
};
|
|
};
|
|
"services/gitea" = {
|
|
type = "zfs_fs";
|
|
mountpoint = "/srv/gitea";
|
|
options = {
|
|
mountpoint = "legacy";
|
|
compression = "lz4";
|
|
};
|
|
};
|
|
"container" = {
|
|
type = "zfs_fs";
|
|
mountpoint = "/var/lib/containers/storage"; # needed for podman
|
|
options = {
|
|
mountpoint = "legacy";
|
|
compression = "lz4";
|
|
acltype = "posixacl"; # needed for podman
|
|
};
|
|
};
|
|
"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";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
};
|
|
};
|
|
}
|
|
|