mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-26 15:04:59 +08:00
17 lines
282 B
Nix
17 lines
282 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/nixos-config".num = 1;
|
|
};
|
|
};
|
|
}
|