From 8aaea50551eab595ee951d1658a771127219781d Mon Sep 17 00:00:00 2001 From: sefidel Date: Tue, 23 Jan 2024 03:05:44 +0900 Subject: feat(nixos/kanata): configure zfs data pool --- nixos/kanata/hardware-configuration.nix | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'nixos/kanata') diff --git a/nixos/kanata/hardware-configuration.nix b/nixos/kanata/hardware-configuration.nix index b81b08d..ca125a0 100644 --- a/nixos/kanata/hardware-configuration.nix +++ b/nixos/kanata/hardware-configuration.nix @@ -38,6 +38,31 @@ fsType = "zfs"; }; + fileSystems."/smol/core" = + { device = "smol/ds1/core"; + fsType = "zfs"; + }; + + fileSystems."/smol/moon" = + { device = "smol/ds1/moon"; + fsType = "zfs"; + }; + + fileSystems."/smol/sandbox" = + { device = "smol/ds1/sandbox"; + fsType = "zfs"; + }; + + fileSystems."/smol/backups" = + { device = "smol/ds1/backups"; + fsType = "zfs"; + }; + + fileSystems."/smol/archive" = + { device = "smol/ds1/archive"; + fsType = "zfs"; + }; + swapDevices = [ { device = "/dev/disk/by-uuid/c092b7a3-813c-4be7-9730-45d9426f524c"; } ]; -- cgit 1.4.1