refactor(focus): convert to global split zfs

This commit is contained in:
514fpv 2024-02-10 00:32:16 +08:00
parent ee098cdc28
commit f54f445358
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw

View file

@ -5,10 +5,9 @@
auth.openssh.enable = true;
fs.esp.uuid = "8C36-CBE2";
fs.type = "zfs";
fs.zfs.externalStore = true;
fs.external.device = "/dev/disk/by-uuid/59b73292-8098-4774-b8b6-59c23130d405";
fs.external.fsType = "xfs";
fs.external.options = [ "noatime" ];
fs.zfs.split.enable = true;
fs.zfs.split.store = "59b73292-8098-4774-b8b6-59c23130d405";
fs.zfs.split.secret = "f8983719-f9e7-42b2-b8f3-0f32f6b328ae";
fs.cryptsetup.enable = true;
fs.cryptsetup.allowDiscards = false;
fs.cryptsetup.uuids.secret = "c2bc361e-6f9a-48fa-b698-ed3603a9664a";
@ -17,20 +16,6 @@
acme.enable = true;
};
services.fstrim.enable = true;
boot.swraid.enable = true;
boot.swraid.mdadmConf = ''
PROGRAM /usr/bin/true
'';
fileSystems."/nix/var/secret" =
{ device = "/dev/disk/by-uuid/f8983719-f9e7-42b2-b8f3-0f32f6b328ae";
fsType = "ext4";
options = [ "noatime" ];
neededForBoot = true;
depends = [ "/nix/var" ];
};
boot.initrd.systemd.services.zfs-import-focus.after = [ "cryptsetup.target" ];
services.udev.extraRules = ''
SUBSYSTEM=="net", ACTION=="add", ATTR{address}=="6c:b3:11:3d:80:13", NAME="2g5"
'';