From 1fca88fbbe724461090289cba4ae953f31597155 Mon Sep 17 00:00:00 2001 From: iFargle Date: Tue, 19 Dec 2023 19:47:03 +0900 Subject: [PATCH] test --- nixos/hosts/nuc-server/mounts.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos/hosts/nuc-server/mounts.nix b/nixos/hosts/nuc-server/mounts.nix index fc662c36..02274b9d 100644 --- a/nixos/hosts/nuc-server/mounts.nix +++ b/nixos/hosts/nuc-server/mounts.nix @@ -1,13 +1,13 @@ { - filesystem."/Storage/Data" = { + fileSystems."/Storage/Data" = { device = "192.168.1.13:/Data"; fsType = "nfs"; }; - filesystem."/Storage/Video" = { + fileSystems."/Storage/Video" = { device = "192.168.1.13:/Video"; fsType = "nfs"; }; - filesystem."/Storage/Backups" = { + fileSystems."/Storage/Backups" = { device = "192.168.1.13:/Backups"; fsType = "nfs"; };