mirror of
https://github.com/kmein/niveum
synced 2026-03-30 01:01:10 +02:00
modularize
This commit is contained in:
27
configs/urxvt.nix
Normal file
27
configs/urxvt.nix
Normal file
@@ -0,0 +1,27 @@
|
||||
{ pkgs, config, ... }:
|
||||
let theme = import <dot/theme.nix>;
|
||||
in {
|
||||
services.urxvtd.enable = true;
|
||||
|
||||
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;
|
||||
"colorUL" = theme.colorScheme.blue.light;
|
||||
"perl-lib" = "${pkgs.urxvt_perls}/lib/urxvt/perl";
|
||||
urlLauncher = "/usr/bin/env chromium";
|
||||
fading = 20;
|
||||
iso14755 = false;
|
||||
urgentOnBell = true;
|
||||
reverseVideo = false;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user