added nfs client

This commit is contained in:
willifan 2024-10-19 23:35:32 +02:00
parent 13b2821dd3
commit ad813fe996
2 changed files with 11 additions and 1 deletions

View file

@ -2,8 +2,9 @@
{ {
networking.hostName = hostname; networking.hostName = hostname;
imports = [ imports = [
./nix-ld.nix
./boot.nix ./boot.nix
./nfs-client.nix
./nix-ld.nix
./printers.nix ./printers.nix
./syncthing.nix ./syncthing.nix
]; ];

View file

@ -0,0 +1,9 @@
{ ... }:
{
fileSystems."/mnt/nfs" = {
device = "192.168.178.19:/roms";
fsType = "nfs";
};
}