diff options
author | lassulus <lass@aidsballs.de> | 2016-02-01 15:19:04 +0100 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2016-02-01 15:19:04 +0100 |
commit | 1f345820ffb80177db695aeea76a5d8e5f1ef6a7 (patch) | |
tree | 600200540e2c3deb15683c5236ae9776b6590617 /shared/1systems/wolf.nix | |
parent | c5441d30682e0dbe31ebc09bfff6fc0bd0056677 (diff) | |
parent | 5b1e066cbd3106d03300276a704955df6cf7657e (diff) |
Merge remote-tracking branch 'gum/master'
Diffstat (limited to 'shared/1systems/wolf.nix')
-rw-r--r-- | shared/1systems/wolf.nix | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/shared/1systems/wolf.nix b/shared/1systems/wolf.nix index f05356f..8cf5be7 100644 --- a/shared/1systems/wolf.nix +++ b/shared/1systems/wolf.nix @@ -12,10 +12,21 @@ in ../2configs/shack-nix-cacher.nix ../2configs/shack-drivedroid.nix ../2configs/buildbot-standalone.nix - ../2configs/graphite.nix + # ../2configs/graphite.nix ]; # use your own binary cache, fallback use cache.nixos.org (which is used by # apt-cacher-ng in first place) + + services.grafana = { + enable = true; + addr = "0.0.0.0"; + extraOptions = { "AUTH_ANONYMOUS_ENABLED" = "true"; }; + users.allowSignUp = true; + users.allowOrgCreate = true; + users.autoAssignOrg = true; + security = import <secrets/grafana_security.nix>; + }; + nix.binaryCaches = [ "http://localhost:3142/nixos" "https://cache.nixos.org" ]; networking = { |