nix-config/modules/dvb-dump-nfs-automount.nix

27 lines
474 B
Nix
Raw Normal View History

2022-06-08 18:47:16 +02:00
{ pkgs, lib, ... }:
{
2022-06-08 18:47:49 +02:00
environment.systemPackages = with pkgs; [ nfs-utils ];
2022-06-08 18:47:16 +02:00
services.rpcbind.enable = true;
2022-06-08 18:47:49 +02:00
systemd.mounts = [{
2022-06-08 18:47:16 +02:00
type = "nfs";
mountConfig = {
Options = "noatime";
};
what = "10.13.37.5:/";
where = "/mnt/dvb";
2022-06-08 18:47:49 +02:00
}];
2022-06-08 18:47:16 +02:00
2022-06-08 18:47:49 +02:00
systemd.automounts = [{
2022-06-08 18:47:16 +02:00
wantedBy = [ "multi-user.target" ];
2022-06-08 18:47:49 +02:00
requires = [ "wg-quick-wg-dvb.service" ];
2022-06-11 23:28:31 +02:00
automountConfig = {
2022-06-08 18:47:16 +02:00
TimeoutIdleSec = "600";
};
where = "/mnt/dvb";
2022-06-08 18:47:49 +02:00
}];
2022-06-08 18:47:16 +02:00
}