nix-config/modules/desktop/nfs-client.nix
2024-12-15 14:10:57 +01:00

18 lines
306 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
nfs-utils
];
services.autofs = {
enable = true;
autoMaster = let
mapConf = pkgs.writeText "auto.nfs" ''
roms -fstype=nfs4 192.168.178.19:/roms
'';
in ''
/mnt/nfs ${mapConf}
'';
};
}