summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2016-01-13 00:57:23 +0100
committerGregor Kleen <gkleen@yggdrasil.li>2016-01-13 00:57:23 +0100
commitdbc7aea0b2ae7dd962d92789ff212b006a6c80e5 (patch)
tree4adba6318087902f82f08f8cea5973f62b50b383
parente3910619ebc44e81070b4b817f3c713fbc6c428c (diff)
downloadnixos-dbc7aea0b2ae7dd962d92789ff212b006a6c80e5.tar
nixos-dbc7aea0b2ae7dd962d92789ff212b006a6c80e5.tar.gz
nixos-dbc7aea0b2ae7dd962d92789ff212b006a6c80e5.tar.bz2
nixos-dbc7aea0b2ae7dd962d92789ff212b006a6c80e5.tar.xz
nixos-dbc7aea0b2ae7dd962d92789ff212b006a6c80e5.zip
no emperor mode?
-rw-r--r--ymir.nix15
1 files changed, 5 insertions, 10 deletions
diff --git a/ymir.nix b/ymir.nix
index d83b925d..8cb71cda 100644
--- a/ymir.nix
+++ b/ymir.nix
@@ -176,16 +176,11 @@ in rec {
176 enable = true; 176 enable = true;
177 plugins = []; 177 plugins = [];
178 instance = { 178 instance = {
179 type = "emperor"; 179 type = "normal";
180 vassals = { 180 processes = 1;
181 cgit = { 181 threads = 8;
182 type = "normal"; 182 cgi = "${pkgs.cgit}/bin/cgit";
183 processes = 1; 183 socket = "cgit.sock";
184 threads = 8;
185 cgi = "${pkgs.cgit}/bin/cgit";
186 socket = "cgit.sock";
187 };
188 };
189 }; 184 };
190 }; 185 };
191 186