aboutsummaryrefslogtreecommitdiff
path: root/profiles/server.nix
diff options
context:
space:
mode:
Diffstat (limited to 'profiles/server.nix')
-rw-r--r--profiles/server.nix11
1 files changed, 0 insertions, 11 deletions
diff --git a/profiles/server.nix b/profiles/server.nix
index 82a20c7..593dd44 100644
--- a/profiles/server.nix
+++ b/profiles/server.nix
@@ -2,19 +2,10 @@
...
}:
{
-
imports = [
./default.nix
];
- networking = {
- firewall = {
- enable = false;
- allowPing = true;
- logRefusedConnections = false;
- };
- };
-
# Used by systemd-resolved, not directly by resolv.conf.
networking.nameservers = [
"8.8.8.8#dns.google"
@@ -24,6 +15,4 @@
users.users.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINBkozy+X96u5ciX766bJ/AyQ3xm1tXZTIr5+4PVFZFi"
];
-
- networking.firewall.allowedTCPPorts = [ 22 ];
}