diff options
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/server1/configuration.nix | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/hosts/server1/configuration.nix b/hosts/server1/configuration.nix index 2d35bd8..e21327e 100644 --- a/hosts/server1/configuration.nix +++ b/hosts/server1/configuration.nix @@ -1,4 +1,4 @@ -{...}: { +{config, ...}: { imports = [ ./networking.nix # network configuration that just works ./hardware.nix @@ -7,6 +7,15 @@ ]; vhack = { + back = { + enable = true; + repositories = { + "${config.services.gitolite.dataDir}/vhack.eu/nixos-config.git" = { + domain = "issues.vhack.eu"; + port = 9220; + }; + }; + }; etesync.enable = true; git-server.enable = true; nginx.enable = true; |