nixos/global/fs/zfs/default.nix

93 lines
2.6 KiB
Nix
Raw Normal View History

2024-01-09 13:17:47 +08:00
{ pkgs
, lib
, config
, ... }: with lib; let
cfg = config.global.fs;
in {
2024-02-10 00:16:09 +08:00
imports = [
./split.nix
2024-02-10 00:57:35 +08:00
./replication.nix
2024-02-10 00:16:09 +08:00
];
# -o ashift=12
# -O encryption=on -O keyformat=passphrase -O keylocation=prompt
# -O compression=on -O mountpoint=none -O xattr=sa -O acltype=posixacl
2024-01-09 13:17:47 +08:00
options.global.fs.zfs = {
persist = mkOption {
type = with types; str;
default = cfg.store;
description = ''
pool for persist dataset
defaults to nix store dataset
'';
};
mountpoints = mkOption {
type = with types; attrsOf str;
description = "zfs dataset mountpoints";
};
2024-01-21 20:44:12 +08:00
externalStore = mkEnableOption "external nix store filesystem";
2024-02-10 00:16:09 +08:00
split = {
enable = mkEnableOption "zfs state with split nix store";
mdProg = mkOption {
type = with types; str;
default = "/usr/bin/true";
description = "mdadm PROGRAM config value";
};
secret = mkOption {
type = with types; str;
description = "UUID of secret filesystem";
};
2024-02-10 00:20:43 +08:00
store = mkOption {
type = with types; str;
description = "UUID of store filesystem";
};
2024-02-10 00:16:09 +08:00
};
2024-02-10 00:57:35 +08:00
replication = {
enable = mkEnableOption "zfs replication to remote";
remote = mkOption {
type = with types; str;
description = "remote host as replication destination";
};
port = mkOption {
type = with types; port;
description = "ssh port of replication target";
default = 22;
};
2024-02-10 00:57:35 +08:00
datasets = mkOption {
type = with types; listOf str;
default = [ "persist" "service" "storage" ];
description = "list of filesystems to perform replication for";
};
sendOptions = mkOption {
type = with types; str;
default = "w";
description = "send options for all datasets";
};
};
2024-01-09 13:17:47 +08:00
};
config = mkIf (cfg.type == "zfs") {
fileSystems = (mapAttrs (path: dataset: {
device = "${cfg.zfs.persist}/${dataset}";
fsType = "zfs";
# required by impermanence
neededForBoot = true;
}) cfg.zfs.mountpoints) // {
2024-01-21 20:44:12 +08:00
"/nix" = (if !cfg.zfs.externalStore then
2024-01-09 13:17:47 +08:00
{ device = "${cfg.store}/nix";
fsType = "zfs";
2024-01-21 20:44:12 +08:00
} else
{ inherit (cfg.external) device fsType options; });
};
global.fs.zfs.mountpoints."/nix/persist" = "persist";
2024-01-09 13:17:47 +08:00
services.zfs.trim.enable = true;
services.zfs.autoSnapshot.enable = true;
services.zfs.autoScrub.enable = true;
boot.zfs.devNodes = mkDefault "/dev/disk/by-partuuid";
boot.kernelPackages = mkDefault config.boot.zfs.package.latestCompatibleLinuxPackages;
2024-01-09 13:17:47 +08:00
};
}