From cd6374e641420ade3603f0fd23fe9afac5c443bc Mon Sep 17 00:00:00 2001 From: tv Date: Wed, 8 Apr 2015 01:07:01 +0200 Subject: I Like To Move It --- modules/urxvtd.nix | 68 ------------------------------------------------------ 1 file changed, 68 deletions(-) delete mode 100644 modules/urxvtd.nix (limited to 'modules/urxvtd.nix') diff --git a/modules/urxvtd.nix b/modules/urxvtd.nix deleted file mode 100644 index 7eb471ed9..000000000 --- a/modules/urxvtd.nix +++ /dev/null @@ -1,68 +0,0 @@ -{ config, lib, pkgs, ... }: - -let - inherit (import ../lib { inherit pkgs; }) shell-escape; - inherit (pkgs) writeScript; -in - -with builtins; -with lib; - -{ - options = { - services.urxvtd = { - enable = mkOption { - type = types.bool; - default = false; - description = "Enable urxvtd per user"; - }; - users = mkOption { - type = types.listOf types.string; - default = []; - description = "users to run urxvtd for"; - }; - urxvtPackage = mkOption { - type = types.package; - default = pkgs.rxvt_unicode; - description = "urxvt package to use"; - }; - xresources = mkOption { - type = types.string; - default = ""; - description = '' - X server resources for urxvt. - ''; - }; - }; - }; - - config = - let - cfg = config.services.urxvtd; - users = cfg.users; - urxvt = cfg.urxvtPackage; - mkService = user: { - description = "urxvt terminal daemon"; - wantedBy = [ "multi-user.target" ]; - restartIfChanged = false; - path = [ pkgs.xlibs.xrdb ]; - environment = { - DISPLAY = ":0"; - URXVT_PERL_LIB = "${urxvt}/lib/urxvt/perl"; - }; - serviceConfig = { - Restart = "always"; - User = user; - ExecStartPre = writeScript "urxvtd-prestart" '' - #!/bin/sh - echo ${shell-escape cfg.xresources} | xrdb -merge - ''; - ExecStart = "${urxvt}/bin/urxvtd"; - }; - }; - in - mkIf cfg.enable { - environment.systemPackages = [ urxvt ]; - systemd.services = listToAttrs (map (u: { name = "${u}-urxvtd"; value = mkService u; }) users); - }; -} -- cgit v1.2.3