Home

dotnix @253f360ccf765494bd350ddc23d015b380ab32a7 - refs - log -
-
https://git.jolheiser.com/dotnix.git
My nix dotfiles
dotnix / machines / dragonwell / ugit.nix
- raw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
  services.ugit = {
    enable = true;
    openFirewall = true;
    authorizedKeys = [
      "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJXoiWcPkL5kUAqJfMxnPM/ND4qJ4kKShDhXdqnYv2ZB"
    ];
    tsAuthKey = "tskey-auth-kRUJE7zxH621CNTRL-Td29STXSrtTUHdacaKaYtTD82uyDXZj7"; # One-time key
    config = {
      ssh.clone-url = "ugit@git.jolheiser.com";
      http.clone-url = "https://git.jolheiser.com";
      log.json = true;
      profile = {
        username = "jolheiser";
        email = "ugit@jolheiser.com";
        links = [
          "Github,https://github.com/jolheiser"
          "Gitea,https://gitea.com/jolheiser"
          "JoJoDev,https://git.jojodev.com/jolheiser"
          "Fediverse,https://social.jolheiser.com/@jolheiser"
        ];
      };
      tailscale = {
        enable = true;
        hostname = "git";
      };
    };
  };
}