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