dotfiles/modules/comin.nix
Lucy von Overheidt d90e44b8cb comin
2025-09-09 18:21:35 +02:00

13 lines
218 B
Nix

{ ... }:
{
services.comin = {
enable = true;
remotes = [
{
name = "origin";
url = "https://code.c-base.org/lucy/dotfiles.git";
branches.main.name = "main";
}
];
};
}