From b0ba3175813913f1433ffaf1031590fce08e39ea Mon Sep 17 00:00:00 2001 From: depsterr Date: Sat, 21 Dec 2024 20:25:30 +0100 Subject: [PATCH] moved nfs share --- nixos/shared/user-system.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/shared/user-system.nix b/nixos/shared/user-system.nix index 036fb95..40e9ff0 100644 --- a/nixos/shared/user-system.nix +++ b/nixos/shared/user-system.nix @@ -32,8 +32,8 @@ system: config: { pkgs, ... }: }; # [NFS] - fileSystems."/home/${config.user}/music" = { - device = "rachel.cafe:/srv/music"; + fileSystems."/home/${config.user}/media" = { + device = "rachel.cafe:/media"; fsType = "nfs"; options = [ "x-systemd.automount" "noauto" "x-systemd.idle-timeout=60" ]; };