summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/lass/urxvtd.nix13
1 files changed, 0 insertions, 13 deletions
diff --git a/modules/lass/urxvtd.nix b/modules/lass/urxvtd.nix
index a62e64a9..469616a9 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";
};
};