mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 02:28:37 +02:00
17 lines
199 B
Nix
17 lines
199 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
# fonts
|
|
fonts.packages = with pkgs; [
|
|
nerd-fonts._0xproto
|
|
cinzel
|
|
times-newer-roman
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
gnome-font-viewer
|
|
];
|
|
}
|