fonts: separated into new file

This commit is contained in:
2026-05-17 09:41:44 +02:00
parent 9a589e2f18
commit 1982e2a58d
2 changed files with 17 additions and 8 deletions
+16
View File
@@ -0,0 +1,16 @@
{
pkgs,
...
}:
{
# fonts
fonts.packages = with pkgs; [
nerd-fonts._0xproto
cinzel
times-newer-roman
];
environment.systemPackages = with pkgs; [
gnome-font-viewer
];
}