Loading nixos/modules/services/x11/urxvtd.nix +4 −8 Original line number Diff line number Diff line Loading @@ -4,18 +4,14 @@ pkgs, ... }: # maintainer: siddharthist with lib; let cfg = config.services.urxvtd; in { options.services.urxvtd = { enable = mkOption { type = types.bool; enable = lib.mkOption { type = lib.types.bool; default = false; description = '' Enable urxvtd, the urxvt terminal daemon. To use urxvtd, run Loading @@ -23,10 +19,10 @@ in ''; }; package = mkPackageOption pkgs "rxvt-unicode" { }; package = lib.mkPackageOption pkgs "rxvt-unicode" { }; }; config = mkIf cfg.enable { config = lib.mkIf cfg.enable { systemd.user.services.urxvtd = { description = "urxvt terminal daemon"; wantedBy = [ "graphical-session.target" ]; Loading Loading
nixos/modules/services/x11/urxvtd.nix +4 −8 Original line number Diff line number Diff line Loading @@ -4,18 +4,14 @@ pkgs, ... }: # maintainer: siddharthist with lib; let cfg = config.services.urxvtd; in { options.services.urxvtd = { enable = mkOption { type = types.bool; enable = lib.mkOption { type = lib.types.bool; default = false; description = '' Enable urxvtd, the urxvt terminal daemon. To use urxvtd, run Loading @@ -23,10 +19,10 @@ in ''; }; package = mkPackageOption pkgs "rxvt-unicode" { }; package = lib.mkPackageOption pkgs "rxvt-unicode" { }; }; config = mkIf cfg.enable { config = lib.mkIf cfg.enable { systemd.user.services.urxvtd = { description = "urxvt terminal daemon"; wantedBy = [ "graphical-session.target" ]; Loading