From 8ed478edb772fc1bd32248b455b8f9f87468569b Mon Sep 17 00:00:00 2001 From: Katherina Walshe-Grey Date: Wed, 19 Jun 2024 18:37:16 +0100 Subject: [PATCH] [tohru] refresh hardware-configuration.nix --- hosts/tohru/hardware-configuration.nix | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/hosts/tohru/hardware-configuration.nix b/hosts/tohru/hardware-configuration.nix index d42b1de..9f80893 100644 --- a/hosts/tohru/hardware-configuration.nix +++ b/hosts/tohru/hardware-configuration.nix @@ -28,6 +28,16 @@ fsType = "zfs"; }; + fileSystems."/config" = + { device = "rpool/config"; + fsType = "zfs"; + }; + + fileSystems."/data" = + { device = "rpool/data"; + fsType = "zfs"; + }; + fileSystems."/home" = { device = "rpool/home"; fsType = "zfs"; @@ -39,18 +49,13 @@ options = [ "fmask=0022" "dmask=0022" ]; }; - fileSystems."/data" = - { device = "rpool/data"; - fsType = "zfs"; - }; - fileSystems."/data/steam" = { device = "rpool/data/steam"; fsType = "zfs"; }; - fileSystems."/config" = - { device = "rpool/config"; + fileSystems."/data/syncthing" = + { device = "rpool/data/syncthing"; fsType = "zfs"; };