From 6b05383f242b7a1d39df1da535b48cb284ecb63f Mon Sep 17 00:00:00 2001 From: chaos Date: Sun, 16 Feb 2025 14:08:51 +0000 Subject: [PATCH] add Music storage volume --- hosts/hetzner-arm/hardware.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/hetzner-arm/hardware.nix b/hosts/hetzner-arm/hardware.nix index 2b0447b..c9b6add 100644 --- a/hosts/hetzner-arm/hardware.nix +++ b/hosts/hetzner-arm/hardware.nix @@ -3,4 +3,10 @@ systemd-boot.enable = true; efi.canTouchEfiVariables = true; }; + + fileSystems."/Music" = { + device = "/dev/disk/by-label/music"; + fsType = "ext4"; + options = ["nofail"]; + }; }