cluster/containers/camptules.nix

24 lines
473 B
Nix
Raw Normal View History

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";
};
};
});
}