diff options
author | sefidel <contact@sefidel.net> | 2023-02-10 18:38:19 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-02-10 18:38:45 +0900 |
commit | 0d28ac05f7ae524fe17a7a3485744e3ffa99ccb6 (patch) | |
tree | c1ab383a15c8705d99fe2f5e5a69373b3d951a4d /nixos/cobalt/services/git-daemon.nix | |
parent | 3a0ab37f75f127fa5a5746d4d741b0122ef7a8aa (diff) | |
download | nixrc-0d28ac05f7ae524fe17a7a3485744e3ffa99ccb6.tar.gz nixrc-0d28ac05f7ae524fe17a7a3485744e3ffa99ccb6.zip |
feat(nixos): remove cobalt
Diffstat (limited to 'nixos/cobalt/services/git-daemon.nix')
-rw-r--r-- | nixos/cobalt/services/git-daemon.nix | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/nixos/cobalt/services/git-daemon.nix b/nixos/cobalt/services/git-daemon.nix deleted file mode 100644 index 21e957e..0000000 --- a/nixos/cobalt/services/git-daemon.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ - services.gitDaemon = { - enable = true; - createUserAndGroup = false; - basePath = "/var/lib/gitolite/repositories"; - }; - - networking.firewall.allowedTCPPorts = [ 9418 ]; - - disabledModules = [ "services/networking/git-daemon.nix" ]; - - imports = [ - ../modules/git-daemon.nix - ]; -} |