12 lines
182 B
Nix
12 lines
182 B
Nix
{ config, pkgs, inputs, ... }:
|
|
|
|
{
|
|
# user fonts
|
|
home.package = with pkgs; [
|
|
nerd-fonts._0xproto
|
|
nerd-fonts.sauce-code-pro
|
|
powerline-fonts
|
|
powerline-symbols
|
|
];
|
|
}
|