From 9e5d5bd874850df8090c6b43a09bd6fab74e537c Mon Sep 17 00:00:00 2001 From: Grigory Shipunov Date: Sat, 5 Aug 2023 20:48:58 +0200 Subject: retire toaster and remove dead code --- modules/dvb-dump-nfs-automount.nix | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 modules/dvb-dump-nfs-automount.nix (limited to 'modules/dvb-dump-nfs-automount.nix') 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"; - }]; -} - - -- cgit v1.3.1