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/configs/urxvt.nix | |
parent | a7ff77b6c147be71d60bda7e73c65286ecfb7c83 (diff) |
tv: reintroduce directory numbers
Diffstat (limited to 'tv/configs/urxvt.nix')
-rw-r--r-- | tv/configs/urxvt.nix | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/tv/configs/urxvt.nix b/tv/configs/urxvt.nix deleted file mode 100644 index 89bb421aa..000000000 --- a/tv/configs/urxvt.nix +++ /dev/null @@ -1,24 +0,0 @@ -{ 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); -} |