nix-config/modules/nixos/comin.nix
2026-08-07 23:06:22 +02:00

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";
}
];
};
}