font.nix syntax fix

This commit is contained in:
Lennart J. Kurzweg (Nx2)
2024-06-20 20:44:30 +02:00
parent b8c1c7f302
commit de3973b4e4

View File

@@ -1,4 +1,9 @@
{ pkgs, ... }: {
pkgs,
# pkgs-unstable,
rice,
...
}:
{ {
fonts.packages = with pkgs; [ fonts.packages = with pkgs; [
noto-fonts noto-fonts
@@ -10,6 +15,6 @@
] ++ (with rice.font; [ ] ++ (with rice.font; [
base.package base.package
code.package code.package
]) ++ (with pkgs-unstable; [ # ]) ++ (with pkgs-unstable; [
]); ]);
} }