Nix-Config/system/kernighan/services/git.nix

12 lines
179 B
Nix

{ config, pkgs, inputs, ... }:
{
services.gitDaemon = {
enable = true;
basePath = "/home/git/repositories/";
exportAll = true;
# port = 9418; # default
};
}