mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-03-22 23:29:08 +01:00
21 lines
405 B
Nix
21 lines
405 B
Nix
{
|
|
config,
|
|
inputs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
imports = [ inputs.comin.nixosModules.comin ];
|
|
|
|
options.custom.services.comin.enable = lib.mkEnableOption "";
|
|
|
|
config = lib.mkIf config.custom.services.comin.enable {
|
|
services.comin = {
|
|
enable = true;
|
|
remotes = lib.singleton {
|
|
name = "origin";
|
|
url = "https://github.com/SebastianStork/nixos-config.git";
|
|
};
|
|
};
|
|
};
|
|
}
|