1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00
Files
niveum/configs/urxvt.nix

29 lines
794 B
Nix
Raw Permalink Normal View History

2019-04-19 03:11:51 +02:00
{ pkgs, config, ... }:
2019-04-19 15:02:05 +02:00
{
2019-04-19 03:11:51 +02:00
services.urxvtd.enable = true;
2019-04-19 15:02:05 +02:00
niveum.applications.terminal = "urxvtc";
2019-04-19 03:11:51 +02:00
home-manager.users.me.programs.urxvt = {
enable = true;
package = pkgs.rxvt_unicode-with-plugins;
keybindings = {
"Shift-Control-C" = "eval:selection_to_clipboard";
"Shift-Control-V" = "eval:paste_clipboard";
};
scroll.bar.enable = false;
extraConfig = {
perl-ext = "default,url-select";
"url-select.launcher" = "/usr/bin/env chromium";
"url-select.underline" = true;
2019-04-19 15:02:05 +02:00
"colorUL" = config.niveum.colours.blue.bright;
2019-04-19 03:11:51 +02:00
"perl-lib" = "${pkgs.urxvt_perls}/lib/urxvt/perl";
urlLauncher = "/usr/bin/env chromium";
fading = 20;
iso14755 = false;
urgentOnBell = true;
reverseVideo = false;
};
};
}