diff options
| author | caley <u65487754@gmail.com> | 2026-06-23 10:47:35 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-23 10:47:35 +0200 |
| commit | a8a12685762d3fead8095c3b39cdd70ec9622f84 (patch) | |
| tree | bcb3654c5ba1fb05c3b3ad985987b5e4603c0987 /nixos/hosts/bin/configuration.nix | |
| parent | 978dd24b8d0cb06318c83ff2173d4b746ddc8dc9 (diff) | |
Update configuration.nix
Diffstat (limited to 'nixos/hosts/bin/configuration.nix')
| -rw-r--r-- | nixos/hosts/bin/configuration.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/nixos/hosts/bin/configuration.nix b/nixos/hosts/bin/configuration.nix index 5c1b0ca..eb418ed 100644 --- a/nixos/hosts/bin/configuration.nix +++ b/nixos/hosts/bin/configuration.nix @@ -21,6 +21,7 @@ networking.hostName = "bin"; networking.networkmanager.enable = true; + networking.firewall.allowedTCPPorts = [ 8080 5657 ]; time.timeZone = "Europe/Berlin"; i18n.defaultLocale = "en_US.UTF-8"; @@ -60,6 +61,15 @@ }; }; + services.pufferpanel = { + enable = true; + extraPackages = [ pkgs.jdk25 ]; + environment = { + PUFFER_WEB_HOST = ":8080"; + PUFFER_DAEMON_SFTP_HOST = ":5657"; + }; + }; + documentation.enable = false; documentation.man.enable = false; |
