comin is a NixOS deployment tool operating in pull mode

This commit is contained in:
Lucy von Overheidt 2025-09-14 00:54:21 +02:00
parent d3ee9f7205
commit 43b68d7d75
3 changed files with 52 additions and 0 deletions

13
modules/comin.nix Normal file
View file

@ -0,0 +1,13 @@
{ ... }:
{
services.comin = {
enable = true;
remotes = [
{
name = "origin";
url = "https://code.c-base.org/lucy/games-night.git";
branches.main.name = "master";
}
];
};
}