diff options
author | tv <tv@shackspace.de> | 2015-07-28 20:40:25 +0200 |
---|---|---|
committer | tv <tv@shackspace.de> | 2015-07-28 20:40:25 +0200 |
commit | 8170b281964688b542fb151054c5d86d819008b3 (patch) | |
tree | a37b713c7662dbaef73508bca889c83c7dc5a620 /tv/2configs/urxvt.nix | |
parent | a7ff77b6c147be71d60bda7e73c65286ecfb7c83 (diff) |
tv: reintroduce directory numbers
Diffstat (limited to 'tv/2configs/urxvt.nix')
-rw-r--r-- | tv/2configs/urxvt.nix | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tv/2configs/urxvt.nix b/tv/2configs/urxvt.nix new file mode 100644 index 000000000..89bb421aa --- /dev/null +++ b/tv/2configs/urxvt.nix @@ -0,0 +1,24 @@ +{ pkgs, ... }: + +with builtins; + +let + users = [ "tv" ]; + urxvt = pkgs.rxvt_unicode; + mkService = user: { + description = "urxvt terminal daemon"; + wantedBy = [ "multi-user.target" ]; + restartIfChanged = false; + serviceConfig = { + Restart = "always"; + User = user; + ExecStart = "${urxvt}/bin/urxvtd"; + }; + }; + +in + +{ + environment.systemPackages = [ urxvt ]; + systemd.services = listToAttrs (map (u: { name = "${u}-urxvtd"; value = mkService u; }) users); +} |