From 6dc8e03bb97ffe4baf29ec33e272b4835c4fe249 Mon Sep 17 00:00:00 2001 From: ShatteredMINT Date: Sat, 15 Feb 2025 23:20:37 +0100 Subject: [PATCH] add zfs volume description to backup-target --- backup-target.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/backup-target.nix b/backup-target.nix index 4333201..1c9f53c 100644 --- a/backup-target.nix +++ b/backup-target.nix @@ -15,5 +15,13 @@ ]; }; + fileSystems."/mnt/backup" = + { + #depends = [ "/" ]; + device = "BACKUP/backup"; + fsType = "zfs"; + options = [ "nofail" ]; + }; + networking.firewall.allowedTCPPorts = [ 22 ]; }