mirror of
https://git.gay/xqtc/nixos-config
synced 2025-04-30 18:57:30 +02:00
12 lines
271 B
Nix
12 lines
271 B
Nix
{ inputs, pkgs, lib, config, ... }: {
|
|
imports = [ inputs.comin.nixosModules.comin ];
|
|
|
|
services.comin = {
|
|
enable = true;
|
|
remotes = [{
|
|
name = "origin";
|
|
url = "https://git.gay/xqtc/nixos-config.git";
|
|
branches.main.name = "main";
|
|
}];
|
|
};
|
|
}
|