diff options
Diffstat (limited to 'nixos/hosts/bin/default.nix')
| -rw-r--r-- | nixos/hosts/bin/default.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/nixos/hosts/bin/default.nix b/nixos/hosts/bin/default.nix index 8b13789..08df174 100644 --- a/nixos/hosts/bin/default.nix +++ b/nixos/hosts/bin/default.nix @@ -1 +1,18 @@ +{ ... }: { + imports = [ + ./hardware-configuration.nix + ]; + networking.hostName = "bin"; + + services.openssh.enable = true; + services.pufferpanel.enable = true; + + networking.firewall.allowedTCPPorts = [ 22 8080 5657 ]; + + users.users.cat.openssh.authorizedKeys.keys = [ + "" + ]; + + system.stateVersion = "26.05"; +} |
