dotfiles/modules/comin.nix

14 lines
218 B
Nix
Raw Normal View History

2025-09-09 18:21:35 +02:00
{ ... }:
{
services.comin = {
enable = true;
remotes = [
{
name = "origin";
url = "https://code.c-base.org/lucy/dotfiles.git";
branches.main.name = "main";
}
];
};
}