summaryrefslogtreecommitdiff
path: root/modules/nixos/mixins/comin.nix
blob: b02aab6497e8cc283f5e038e5015c45cceba8087 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ inputs, ... }:

{
  imports = [ inputs.comin.nixosModules.comin ];

  services.comin = {
    remotes = [
      {
        name = "origin";
        url = "https://github.com/getchoo/borealis.git";
      }
    ];
  };
}