Evie Litherland-Smith
8c7f8dba52
Move collections to use default.nix in relevant directories Combine GUI elements into gui directory
9 lines
207 B
Nix
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" ];
|
|
};
|
|
}
|