mirror of
https://github.com/librephoenix/nixos-config
synced 2025-04-20 17:24:35 +05:30
14 lines
212 B
Nix
14 lines
212 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
# Fonts are nice to have
|
|
fonts.packages = with pkgs; [
|
|
# Fonts
|
|
nerdfonts
|
|
lxgw-wenkai
|
|
sarasa-gothic
|
|
# powerline # FIXME broken by python 311 -> 312 nixpkgs update
|
|
];
|
|
|
|
}
|