hyperhive/nix/templates/agent-base.nix

17 lines
359 B
Nix

{ pkgs, ... }:
{
boot.isContainer = true;
environment.systemPackages = [ pkgs.hyperhive ];
systemd.services.hive-ag3nt = {
description = "hive-ag3nt harness";
wantedBy = [ "multi-user.target" ];
serviceConfig = {
ExecStart = "${pkgs.hyperhive}/bin/hive-ag3nt";
Type = "oneshot";
};
};
system.stateVersion = "25.11";
}