mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 15:15:52 +05:30
18 lines
283 B
Nix
18 lines
283 B
Nix
|
{ config, 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
|
||
|
];
|
||
|
|
||
|
}
|