From e1cbf930a8431326eab3f8413e7affb555aaf6be Mon Sep 17 00:00:00 2001 From: Aleksandr Lebedev Date: Fri, 26 Sep 2025 20:01:38 +0200 Subject: [PATCH] sleep --- systems/x86_64-linux/stargate/disko.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/systems/x86_64-linux/stargate/disko.nix b/systems/x86_64-linux/stargate/disko.nix index a27b05d..c4a5954 100644 --- a/systems/x86_64-linux/stargate/disko.nix +++ b/systems/x86_64-linux/stargate/disko.nix @@ -49,19 +49,19 @@ in { options.ashift = "12"; mountpoint = "/zstorage"; datasets = { - "services" = { + services = { type = "zfs_fs"; mountpoint = "/var/lib"; options."com.sun:auto-snapshot" = "true"; }; - "backups" = { + backups = { type = "zfs_fs"; - mountpoint = "/backups"; + mountpoint = "/zstorage/backups"; options."com.sun:auto-snapshot" = "true"; }; - "media" = { + media = { type = "zfs_fs"; - mountpoint = "/media"; + mountpoint = "/zstorage/media"; options."com.sun:auto-snapshot" = "true"; }; };