From e6251069f433859ee8784cef2c8bb4b597a32cca Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Sat, 22 Apr 2023 15:18:40 +0100 Subject: [PATCH] Move urxvt into gui section --- home/desktop/xresources.nix | 7 ------- home/gui/urxvt.nix | 11 +++++++++++ 2 files changed, 11 insertions(+), 7 deletions(-) create mode 100644 home/gui/urxvt.nix diff --git a/home/desktop/xresources.nix b/home/desktop/xresources.nix index 7891d85f..1218d453 100644 --- a/home/desktop/xresources.nix +++ b/home/desktop/xresources.nix @@ -18,11 +18,4 @@ sha256 = "YFlSGJzWWB57eSXiUY4l/mSBbOY0an+qej6//YLSiuE="; } + "/macchiato.Xresources" ); - programs.urxvt = { - enable = true; - fonts = [ - "xft:FiraCode Nerd Font Mono:pixelsize=16" - "xft:Iosevka Nerd Font Mono:pixelsize=16" - ]; - }; } diff --git a/home/gui/urxvt.nix b/home/gui/urxvt.nix new file mode 100644 index 00000000..b0282a7c --- /dev/null +++ b/home/gui/urxvt.nix @@ -0,0 +1,11 @@ +{ ... }: +{ + imports = [ ./common.nix ]; + programs.urxvt = { + enable = true; + fonts = [ + "xft:FiraCode Nerd Font Mono:pixelsize=16" + "xft:Iosevka Nerd Font Mono:pixelsize=16" + ]; + }; +}