mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 07:05:51 +05:30
18 lines
275 B
Nix
18 lines
275 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
# Fonts are nice to have
|
|
fonts.fonts = with pkgs; [
|
|
# Fonts
|
|
(nerdfonts.override { fonts = [ "Inconsolata" ]; })
|
|
powerline
|
|
inconsolata
|
|
inconsolata-nerdfont
|
|
iosevka
|
|
font-awesome
|
|
ubuntu_font_family
|
|
terminus_font
|
|
];
|
|
|
|
}
|