diff options
author | lassulus <lass@aidsballs.de> | 2015-11-13 01:16:15 +0100 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2015-11-13 01:18:30 +0100 |
commit | 58eab5df691efd6933063ba1ec9278cd940a1ba1 (patch) | |
tree | cfef6f0be2a38d9bcfcb8e18511591ef66b0ce26 /lass/3modules/go.nix | |
parent | 8cc4395e15498aa607e96fef09d9f7b9827567fc (diff) |
l 3 go -> k 3 go
Diffstat (limited to 'lass/3modules/go.nix')
-rw-r--r-- | lass/3modules/go.nix | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/lass/3modules/go.nix b/lass/3modules/go.nix deleted file mode 100644 index b83d2e5a1..000000000 --- a/lass/3modules/go.nix +++ /dev/null @@ -1,66 +0,0 @@ -{ config, lib, pkgs, ... }: - -with builtins; -with lib; - -let - cfg = config.lass.go; - - out = { - options.lass.go = api; - config = mkIf cfg.enable imp; - }; - - api = { - enable = mkEnableOption "Enable go url shortener"; - port = mkOption { - type = types.str; - default = "1337"; - description = "on which port go should run on"; - }; - redisKeyPrefix = mkOption { - type = types.str; - default = "go:"; - description = "change the Redis key prefix which defaults to `go:`"; - }; - }; - - imp = { - services.redis = { - enable = mkDefault true; - bind = mkDefault "127.0.0.1"; - }; - - users.extraUsers.go = { - name = "go"; - uid = 42774411; #genid go - description = "go url shortener user"; - home = "/var/lib/go"; - createHome = true; - }; - - systemd.services.go = { - description = "go url shortener"; - after = [ "network.target" ]; - wantedBy = [ "multi-user.target" ]; - - path = with pkgs; [ - go - ]; - - environment = { - PORT = cfg.port; - REDIS_KEY_PREFIX = cfg.redisKeyPrefix; - }; - - restartIfChanged = true; - - serviceConfig = { - User = "go"; - Restart = "always"; - ExecStart = "${pkgs.go}/bin/go"; - }; - }; - }; - -in out |