aboutsummaryrefslogtreecommitdiff
path: root/profiles/server.nix
diff options
context:
space:
mode:
Diffstat (limited to 'profiles/server.nix')
-rw-r--r--profiles/server.nix19
1 files changed, 0 insertions, 19 deletions
diff --git a/profiles/server.nix b/profiles/server.nix
deleted file mode 100644
index 47cdc17..0000000
--- a/profiles/server.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-{ pkgs, config, lib, ... }:
-{
- imports = [
- ./default.nix
- ./tailscale.nix
- ];
-
- powerManagement.cpuFreqGovernor = "schedutil";
-
- services.openssh = {
- enable = true;
- settings = {
- PermitRootLogin = "yes";
- PasswordAuthentication = false;
- };
- };
-
- networking.firewall.allowedTCPPorts = [ 22 ];
-}