cluster/containers/camptules.nix
Magic_RB 255984e3f3
Add camptules
Signed-off-by: Magic_RB <magic_rb@redalder.org>
2021-10-17 22:21:32 +02:00

24 lines
473 B
Nix

nglib: camptules:
(nglib "x86_64-linux").makeSystem {
system = "x86_64-linux";
name = "nixng-camptules";
config = ({ pkgs, config, nglib, lib, ... }:
{
imports = [
camptules.nixngModule
];
config = {
dumb-init = {
enable = true;
type.services = {};
};
services.camptules = {
enable = true;
package = camptules.defaultPackage."x86_64-linux";
};
};
});
}