mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 18:20:32 +01:00
23 lines
307 B
Nix
23 lines
307 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs.comin.nixosModules.comin
|
|
];
|
|
|
|
services.comin = {
|
|
enable = true;
|
|
remotes = [
|
|
{
|
|
name = "origin";
|
|
url = "https://git.gay/xqtc/nixos-config.git";
|
|
branches.main.name = "main";
|
|
}
|
|
];
|
|
};
|
|
}
|