summaryrefslogtreecommitdiff
path: root/nixos/hosts/bin/default.nix
blob: 08df174f66e5bd988acb8b9c1c717009145f4dc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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";
}