diff --git a/hosts/desktop/default.nix b/hosts/desktop/default.nix index be5c60a..e0e477a 100644 --- a/hosts/desktop/default.nix +++ b/hosts/desktop/default.nix @@ -2,8 +2,9 @@ { networking.hostName = hostname; imports = [ - ./nix-ld.nix ./boot.nix + ./nfs-client.nix + ./nix-ld.nix ./printers.nix ./syncthing.nix ]; diff --git a/hosts/desktop/nfs-client.nix b/hosts/desktop/nfs-client.nix new file mode 100644 index 0000000..f415f22 --- /dev/null +++ b/hosts/desktop/nfs-client.nix @@ -0,0 +1,9 @@ +{ ... }: +{ + + fileSystems."/mnt/nfs" = { + device = "192.168.178.19:/roms"; + fsType = "nfs"; + }; + +}