diff options
| author | Grigory Shipunov | 2023-08-05 20:48:58 +0200 |
|---|---|---|
| committer | Grigory Shipunov | 2023-08-05 20:51:15 +0200 |
| commit | 9e5d5bd874850df8090c6b43a09bd6fab74e537c (patch) | |
| tree | 718ea139ed960358204472ec7e7151c73a37035e /modules/dvb-dump-nfs-automount.nix | |
| parent | 8b8d90cec49f9af706d0a1fc090c89441943b088 (diff) | |
retire toaster and remove dead code
Diffstat (limited to 'modules/dvb-dump-nfs-automount.nix')
| -rw-r--r-- | modules/dvb-dump-nfs-automount.nix | 26 |
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"; - }]; -} - - |
