mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-27 15:54:58 +08:00
17 lines
274 B
Nix
17 lines
274 B
Nix
{ flake, ... }:
|
|
let
|
|
inherit (flake) inputs;
|
|
inherit (inputs) self;
|
|
in
|
|
{
|
|
imports = [
|
|
inputs.github-nix-ci.nixosModules.default
|
|
];
|
|
|
|
services.github-nix-ci = {
|
|
age.secretsDir = self + /secrets;
|
|
personalRunners = {
|
|
"srid/srid".num = 1;
|
|
};
|
|
};
|
|
}
|