nixos-config/hosts/x86_64-linux/beleth/comin.nix

23 lines
307 B
Nix
Raw Normal View History

2024-11-02 00:28:05 +01:00
{
inputs,
pkgs,
lib,
config,
...
}: {
2024-11-02 00:29:37 +01:00
imports = [
inputs.comin.nixosModules.comin
];
2024-11-02 01:01:36 +01:00
2024-11-02 00:28:05 +01:00
services.comin = {
enable = true;
remotes = [
{
name = "origin";
2024-11-02 01:49:07 +01:00
url = "https://git.gay/xqtc/nixos-config.git";
2024-11-02 00:28:05 +01:00
branches.main.name = "main";
}
];
};
}