summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nixos/hosts/bin/configuration.nix10
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;