mirror of
https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git
synced 2025-05-12 16:33:31 +02:00
12 lines
238 B
Nix
12 lines
238 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
cfg = config.services.gickup;
|
|
in
|
|
{
|
|
config = lib.mkIf cfg.enable {
|
|
# TODO: import cfg.instances from a toml file to make it easier for non-nix users
|
|
# to add repositories to mirror
|
|
};
|
|
}
|