From ac16cc8b8b8dad35144248e862905762ec0ae59c Mon Sep 17 00:00:00 2001 From: lassulus Date: Sun, 12 Apr 2015 20:45:56 +0200 Subject: urxvt-lass.nix -> urxvt.nix --- modules/lass/urxvt-lass.nix | 57 --------------------------------------------- modules/lass/urxvt.nix | 57 +++++++++++++++++++++++++++++++++++++++++++++ modules/mors/default.nix | 3 +-- modules/uriel/default.nix | 2 +- 4 files changed, 59 insertions(+), 60 deletions(-) delete mode 100644 modules/lass/urxvt-lass.nix create mode 100644 modules/lass/urxvt.nix diff --git a/modules/lass/urxvt-lass.nix b/modules/lass/urxvt-lass.nix deleted file mode 100644 index b633ce98b..000000000 --- a/modules/lass/urxvt-lass.nix +++ /dev/null @@ -1,57 +0,0 @@ -{ config, pkgs, ... }: - -let - mainUser = config.users.extraUsers.mainUser; - -in { - imports = [ - ./urxvtd.nix - ]; - - services.urxvtd = { - enable = true; - users = [ mainUser.name ]; - urxvtPackage = pkgs.rxvt_unicode_with-plugins; - xresources = '' - URxvt*scrollBar: false - URxvt*urgentOnBell: true - URxvt*font: -*-clean-*-*-*-*-*-*-*-*-*-*-iso10646-* - URxvt*boldFont: -*-clean-*-*-*-*-*-*-*-*-*-*-iso10646-* - URxvt.perl-ext-common: default,clipboard,url-select,keyboard-select - URxvt.url-select.launcher: browser-select - URxvt.url-select.underline: true - URxvt.keysym.M-u: perl:url-select:select_next - URxvt.keysym.M-Escape: perl:keyboard-select:activate - URxvt.keysym.M-s: perl:keyboard-select:search - - URxvt.intensityStyles: false - - !solarized colors - URxvt*fading: 5 - URxvt*background: #002b36 - URxvt*foreground: #657b83 - URxvt*fadeColor: #002b36 - URxvt*cursorColor: #93a1a1 - URxvt*pointerColorBackground: #586e75 - URxvt*pointerColorForeground: #93a1a1 - URxvt*colorUL: #859900 - URxvt*colorBD: #268bd2 - URxvt*color0: #073642 - URxvt*color8: #002b36 - URxvt*color1: #dc322f - URxvt*color9: #cb4b16 - URxvt*color2: #859900 - URxvt*color10: #586e75 - URxvt*color3: #b58900 - URxvt*color11: #657b83 - URxvt*color4: #268bd2 - URxvt*color12: #839496 - URxvt*color5: #d33682 - URxvt*color13: #6c71c4 - URxvt*color6: #2aa198 - URxvt*color14: #93a1a1 - URxvt*color7: #eee8d5 - URxvt*color15: #fdf6e3 - ''; - }; -} diff --git a/modules/lass/urxvt.nix b/modules/lass/urxvt.nix new file mode 100644 index 000000000..b633ce98b --- /dev/null +++ b/modules/lass/urxvt.nix @@ -0,0 +1,57 @@ +{ config, pkgs, ... }: + +let + mainUser = config.users.extraUsers.mainUser; + +in { + imports = [ + ./urxvtd.nix + ]; + + services.urxvtd = { + enable = true; + users = [ mainUser.name ]; + urxvtPackage = pkgs.rxvt_unicode_with-plugins; + xresources = '' + URxvt*scrollBar: false + URxvt*urgentOnBell: true + URxvt*font: -*-clean-*-*-*-*-*-*-*-*-*-*-iso10646-* + URxvt*boldFont: -*-clean-*-*-*-*-*-*-*-*-*-*-iso10646-* + URxvt.perl-ext-common: default,clipboard,url-select,keyboard-select + URxvt.url-select.launcher: browser-select + URxvt.url-select.underline: true + URxvt.keysym.M-u: perl:url-select:select_next + URxvt.keysym.M-Escape: perl:keyboard-select:activate + URxvt.keysym.M-s: perl:keyboard-select:search + + URxvt.intensityStyles: false + + !solarized colors + URxvt*fading: 5 + URxvt*background: #002b36 + URxvt*foreground: #657b83 + URxvt*fadeColor: #002b36 + URxvt*cursorColor: #93a1a1 + URxvt*pointerColorBackground: #586e75 + URxvt*pointerColorForeground: #93a1a1 + URxvt*colorUL: #859900 + URxvt*colorBD: #268bd2 + URxvt*color0: #073642 + URxvt*color8: #002b36 + URxvt*color1: #dc322f + URxvt*color9: #cb4b16 + URxvt*color2: #859900 + URxvt*color10: #586e75 + URxvt*color3: #b58900 + URxvt*color11: #657b83 + URxvt*color4: #268bd2 + URxvt*color12: #839496 + URxvt*color5: #d33682 + URxvt*color13: #6c71c4 + URxvt*color6: #2aa198 + URxvt*color14: #93a1a1 + URxvt*color7: #eee8d5 + URxvt*color15: #fdf6e3 + ''; + }; +} diff --git a/modules/mors/default.nix b/modules/mors/default.nix index 3563c8d09..0615aee8d 100644 --- a/modules/mors/default.nix +++ b/modules/mors/default.nix @@ -15,11 +15,10 @@ ../lass/vim.nix ../lass/virtualbox.nix ../lass/elster.nix - ../lass/urxvt-lass.nix + ../lass/urxvt.nix ../lass/steam.nix ../lass/wine.nix ]; - networking.hostName = "mors"; networking.wireless.enable = true; diff --git a/modules/uriel/default.nix b/modules/uriel/default.nix index bd784c6a7..768663664 100644 --- a/modules/uriel/default.nix +++ b/modules/uriel/default.nix @@ -11,7 +11,7 @@ ../tv/exim-retiolum.nix ../lass/pass.nix ../lass/vim.nix - ../lass/urxvt-lass.nix + ../lass/urxvt.nix ]; networking.hostName = "uriel"; -- cgit v1.2.3