20 lines
413 B
Nix
20 lines
413 B
Nix
![]() |
{ inputs, lib, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
inputs.comin.nixosModules.comin
|
||
|
];
|
||
|
|
||
|
services.comin = {
|
||
|
enable = lib.mkDefault false;
|
||
|
remotes = [
|
||
|
{
|
||
|
url = "https://github.com/nix-community/infra.git";
|
||
|
name = "origin";
|
||
|
poller.period = 300; # every 5 minutes
|
||
|
branches.main.name = "master";
|
||
|
branches.testing.name = ""; # disable testing branch
|
||
|
}
|
||
|
];
|
||
|
};
|
||
|
}
|