This commit is contained in:
Lucy von Overheidt 2025-09-09 18:21:35 +02:00
parent 3ca0368824
commit d90e44b8cb
3 changed files with 41 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/dotfiles.git";
branches.main.name = "main";
}
];
};
}