Install seaweedfs from unstable on compute nodes.

This commit is contained in:
2023-07-02 06:48:41 +01:00
parent 226de3cf71
commit 6422669548
4 changed files with 44 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
{ pkgs, ... }:
{
environment.persistence."/persist".directories = [
];
environment.systemPackages = [
pkgs.unstable.seaweedfs
];
networking.firewall = {
allowedTCPPorts = [ ];
allowedUDPPorts = [ ];
};
}