diff options
| author | Caroline Larimore <caroline@larimo.re> | 2024-07-25 05:01:02 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2024-07-25 05:01:02 -0700 |
| commit | 995a0f9eefee8a1d4a260cc7fca0831265410181 (patch) | |
| tree | 5bbd968189ef494a6739940fd9089f1bf8b06527 | |
| parent | 8e7a341ab3032a9ef3a0e8c7d3f48e6e2363c7f4 (diff) | |
Move /secrets zvol to encrypted parent
| -rw-r--r-- | hosts/c-pc/hardware-configuration.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hosts/c-pc/hardware-configuration.nix b/hosts/c-pc/hardware-configuration.nix index 0566e3d..020dab5 100644 --- a/hosts/c-pc/hardware-configuration.nix +++ b/hosts/c-pc/hardware-configuration.nix @@ -42,7 +42,7 @@ "/" = { fsType = "zfs"; device = "zpool/root"; }; "/home" = { fsType = "zfs"; device = "zpool/home"; }; "/persist" = { fsType = "zfs"; device = "zpool/persist"; neededForBoot = true; }; - "/secrets" = { fsType = "zfs"; device = "zpool/secrets"; neededForBoot = true; }; + "/secrets" = { fsType = "zfs"; device = "zpool/secure/secrets"; neededForBoot = true; }; "/nix" = { fsType = "zfs"; device = "zpool/nix"; }; "/boot" = { fsType = "vfat"; device = "/dev/disk/by-uuid/12CE-A600"; }; |