diff options
author | lassulus <lass@aidsballs.de> | 2015-05-15 15:25:30 +0200 |
---|---|---|
committer | tv <tv@shackspace.de> | 2015-05-19 23:17:20 +0200 |
commit | 684c3d18bd1d2c54c354617ce390f6a50b1a7ee2 (patch) | |
tree | a1bebfb7f0a4bec1e479e8bc45361c2f4a265cd9 /modules/lass | |
parent | 6642d55b4d719dc77daa9d7be1b032e3998609a4 (diff) |
urxvtd.nix: remove xresources loading
Diffstat (limited to 'modules/lass')
-rw-r--r-- | modules/lass/urxvtd.nix | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/modules/lass/urxvtd.nix b/modules/lass/urxvtd.nix index a62e64a98..469616a9f 100644 --- a/modules/lass/urxvtd.nix +++ b/modules/lass/urxvtd.nix @@ -1,8 +1,6 @@ { config, lib, pkgs, ... }: let - inherit (import ../../lib { inherit pkgs; }) shell-escape; - inherit (pkgs) writeScript; in with builtins; @@ -26,13 +24,6 @@ with lib; default = pkgs.rxvt_unicode; description = "urxvt package to use"; }; - xresources = mkOption { - type = types.string; - default = ""; - description = '' - X server resources for urxvt. - ''; - }; }; }; @@ -53,10 +44,6 @@ with lib; serviceConfig = { Restart = "always"; User = user; - ExecStartPre = writeScript "urxvtd-prestart" '' - #!/bin/sh - echo ${shell-escape cfg.xresources} | xrdb -merge - ''; ExecStart = "${urxvt}/bin/urxvtd"; }; }; |