19 lines
433 B
Nix
19 lines
433 B
Nix
{ pkgs, ... }:
|
|
{
|
|
boot.isNspawnContainer = true;
|
|
|
|
environment.systemPackages = [ pkgs.hyperhive ];
|
|
|
|
systemd.services.hive-ag3nt = {
|
|
description = "hive-ag3nt harness";
|
|
wantedBy = [ "multi-user.target" ];
|
|
after = [ "network.target" ];
|
|
serviceConfig = {
|
|
ExecStart = "${pkgs.hyperhive}/bin/hive-ag3nt serve";
|
|
Restart = "on-failure";
|
|
RestartSec = 2;
|
|
};
|
|
};
|
|
|
|
system.stateVersion = "25.11";
|
|
}
|