Move urxvt into gui section

This commit is contained in:
Evie Litherland-Smith 2023-04-22 15:18:40 +01:00
parent 76da387eb3
commit e6251069f4
2 changed files with 11 additions and 7 deletions

View file

@ -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"
];
};
}

11
home/gui/urxvt.nix Normal file
View file

@ -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"
];
};
}