From a36b90e65605530798351a161f0cce381f680e32 Mon Sep 17 00:00:00 2001 From: DannyDannyDanny Date: Fri, 17 Apr 2026 14:35:27 +0200 Subject: [PATCH] fix(sunken-ship): set fsType=none on /srv/music bind mount nixos-rebuild was failing with "fsType accessed but has no value defined" on newer nixpkgs. Bind mounts need fsType=none explicitly. Co-Authored-By: Claude Opus 4.6 (1M context) --- nixos/hosts/sunken-ship.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/hosts/sunken-ship.nix b/nixos/hosts/sunken-ship.nix index 6f18a4c..7099ae4 100644 --- a/nixos/hosts/sunken-ship.nix +++ b/nixos/hosts/sunken-ship.nix @@ -95,6 +95,7 @@ in # Persist the bind mount so navidrome can read music outside ProtectHome. fileSystems."/srv/music" = { device = "/home/danny/music"; + fsType = "none"; options = [ "bind" "ro" ]; };