16 lines
283 B
Nix
16 lines
283 B
Nix
{ inputs, ... }:
|
|
|
|
{
|
|
imports = [ inputs.comin.nixosModules.comin ];
|
|
|
|
services.comin = {
|
|
enable = true;
|
|
remotes = [
|
|
{
|
|
name = "origin";
|
|
url = "https://git.huber.cloud/moritz/nix-config.git";
|
|
branches.main.name = "master";
|
|
}
|
|
];
|
|
};
|
|
}
|