nixos-config/system/wm/fonts.nix

12 lines
125 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
# Fonts are nice to have
2024-02-29 07:22:29 +05:30
fonts.packages = with pkgs; [
# Fonts
2024-06-16 07:08:31 +05:30
nerdfonts
powerline
];
}