From 5996e1f301b4d93edac0902b9a38b104c3318202 Mon Sep 17 00:00:00 2001 From: Colin Date: Mon, 13 Nov 2023 02:26:46 +0000 Subject: [PATCH] servo: fix sane.persist ext store --- hosts/by-name/servo/fs.nix | 2 +- hosts/by-name/servo/services/export/default.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/by-name/servo/fs.nix b/hosts/by-name/servo/fs.nix index 9a2fc0a1..c0f7fb88 100644 --- a/hosts/by-name/servo/fs.nix +++ b/hosts/by-name/servo/fs.nix @@ -68,7 +68,7 @@ the contents should be a subset of what's in ../media/datasets. ''; # make sure large media is stored to the HDD - sane.persist.sys.ext = [ + sane.persist.sys.byStore.ext = [ { user = "colin"; group = "users"; diff --git a/hosts/by-name/servo/services/export/default.nix b/hosts/by-name/servo/services/export/default.nix index bab437a3..1671f406 100644 --- a/hosts/by-name/servo/services/export/default.nix +++ b/hosts/by-name/servo/services/export/default.nix @@ -29,7 +29,7 @@ # - `sudo btrfs qgroup limit 20G /mnt/persist/ext/persist/var/export/playground` # to query the quota/status: # - `sudo btrfs qgroup show -re /var/export/playground` - sane.persist.sys.ext = [ + sane.persist.sys.byStore.ext = [ { user = "root"; group = "export"; mode = "0775"; path = "/var/export/playground"; } ];