summaryrefslogtreecommitdiff
path: root/modules/dvb-dump-nfs-automount.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/dvb-dump-nfs-automount.nix')
-rw-r--r--modules/dvb-dump-nfs-automount.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/modules/dvb-dump-nfs-automount.nix b/modules/dvb-dump-nfs-automount.nix
deleted file mode 100644
index 2dce2ea..0000000
--- a/modules/dvb-dump-nfs-automount.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ pkgs, lib, ... }:
-{
-
- environment.systemPackages = with pkgs; [ nfs-utils ];
- services.rpcbind.enable = true;
-
- systemd.mounts = [{
- type = "nfs";
- mountConfig = {
- Options = "noatime";
- };
- what = "10.13.37.5:/";
- where = "/mnt/dvb";
- }];
-
- systemd.automounts = [{
- wantedBy = [ "multi-user.target" ];
- requires = [ "wg-quick-wg-dvb.service" ];
- automountConfig = {
- TimeoutIdleSec = "600";
- };
- where = "/mnt/dvb";
- }];
-}
-
-