nixos/home/gui/urxvt.nix
Evie Litherland-Smith 8c7f8dba52 Rearrange again to reduce complexity
Move collections to use default.nix in relevant directories
Combine GUI elements into gui directory
2023-05-15 11:12:17 +01:00

9 lines
207 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [ (nerdfonts.override { fonts = [ "FiraCode" ]; }) ];
programs.urxvt = {
enable = true;
fonts = [ "xft:FiraCode Nerd Font Mono:pixelsize=16" ];
};
}