diff options
author | tv <tv@shackspace.de> | 2015-10-09 14:48:58 +0200 |
---|---|---|
committer | tv <tv@shackspace.de> | 2015-10-09 14:48:58 +0200 |
commit | 96f4248b65ff1539eded24572ae1805b27c53d50 (patch) | |
tree | 31ff450cc4a5166306c62f99fdd2d1caf3219ecb /lass/3modules/go.nix | |
parent | 694c79a5bc05014604fa2467f965b370102ff78f (diff) | |
parent | 4072a32f89b9cc1c1e7c3583ac5b9ce5dcb004af (diff) |
Merge remote-tracking branch 'cloudkrebs/master'
Diffstat (limited to 'lass/3modules/go.nix')
-rw-r--r-- | lass/3modules/go.nix | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/lass/3modules/go.nix b/lass/3modules/go.nix new file mode 100644 index 000000000..aa900f118 --- /dev/null +++ b/lass/3modules/go.nix @@ -0,0 +1,61 @@ +{ 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 = { + 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 |