add forgejo runner
This commit is contained in:
parent
b16ceb22ee
commit
6628ed9789
7 changed files with 100 additions and 78 deletions
14
flake.nix
14
flake.nix
|
|
@ -273,14 +273,24 @@
|
|||
./hosts/git
|
||||
];
|
||||
};
|
||||
nixosConfigurations."mqtt" = nixpkgs.lib.nixosSystem {
|
||||
nixosConfigurations."forgejo-runner" = nixpkgs.lib.nixosSystem {
|
||||
#system = "x86_64-linux";
|
||||
#pkgs = import nixpkgs { inherit system; };
|
||||
inherit system;
|
||||
modules = [
|
||||
agenix.nixosModules.default
|
||||
{ environment.systemPackages = [ (agenix.packages.${system}.default) ]; }
|
||||
./hosts/mqtt
|
||||
{
|
||||
age.secrets = {
|
||||
forgejo-runner-token-snowden = {
|
||||
file = ./secrets/forgejo-runner-token-snowden.age;
|
||||
owner = "root";
|
||||
group = "root";
|
||||
mode = "0444";
|
||||
};
|
||||
};
|
||||
}
|
||||
./hosts/forgejo-runner
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue