summaryrefslogtreecommitdiff
path: root/com/simatime/git.nix
diff options
context:
space:
mode:
Diffstat (limited to 'com/simatime/git.nix')
-rw-r--r--com/simatime/git.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/com/simatime/git.nix b/com/simatime/git.nix
deleted file mode 100644
index 51e46b6..0000000
--- a/com/simatime/git.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{ pkgs, ... }:
-
-{
- services = {
- gitolite = {
- enable = true;
- enableGitAnnex = true;
- # TODO: change this to /var/lib/gitolite?
- dataDir = "/srv/git";
- user = "git";
- group = "git";
- extraGitoliteRc = ''
- $RC{SITE_INFO} = 'a computer is a bicycle for the mind.';
- '';
- adminPubkey = builtins.readFile ./keys/ben.pub;
- };
- };
-}