summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Van Doorn <nick@nvandoorn.com>2023-05-31 21:46:44 +0000
committerNick Van Doorn <nick@nvandoorn.com>2023-05-31 21:46:44 +0000
commitb563f9f57265548803933b38bd4cfce4593cd627 (patch)
tree836792711106c3fee4bc0069b7ed8fb7b946bc3d
parent7401209e2d0abf0f2707b7e48d730e548a69a09a (diff)
Remove NFS shares
Not using this at all right now.
-rw-r--r--configuration.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/configuration.nix b/configuration.nix
index 6510a68..5afdd07 100644
--- a/configuration.nix
+++ b/configuration.nix
@@ -220,28 +220,7 @@
};
};
};
- services.nfs.server.enable = true;
services.tailscale.enable = true;
- services.adguardhome.enable = true;
-
- fileSystems."/export/media1" = {
- device = "/mnt/cluster1/media";
- options = [ "bind" ];
- };
- fileSystems."/export/media0" = {
- device = "/mnt/cluster0/media";
- options = [ "bind" ];
- };
- fileSystems."/export/home" = {
- device = "/mnt/cluster1/home";
- options = [ "bind" ];
- };
- services.nfs.server.exports = ''
- /export 192.168.2.0/24(insecure,rw,sync,no_subtree_check,crossmnt,fsid=0)
- /export/media0 192.168.2.0/24(insecure,rw,sync,no_subtree_check)
- /export/media1 192.168.2.0/24(insecure,rw,sync,no_subtree_check)
- /export/home 192.168.2.0/24(insecure,rw,sync,no_subtree_check)
- '';
services.postfix = {
enable = true;