hosts/suwako: split service files

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2025-09-04 11:25:31 +05:30
parent 7e4a6ac8fe
commit 895a495b3f
6 changed files with 76 additions and 72 deletions

View File

@@ -0,0 +1,17 @@
{ pkgs, lib, ... }:
{
services.pufferpanel = {
enable = true;
extraGroups = [ "docker" ];
package = pkgs.buildFHSEnv {
name = "pufferpanel-fhs";
runScript = lib.getExe pkgs.pufferpanel;
targetPkgs =
pkgs': with pkgs'; [
icu
openssl
zlib
];
};
};
}