From de3973b4e4d8dd625bdbb10e066ea1b515d74fe1 Mon Sep 17 00:00:00 2001 From: "Lennart J. Kurzweg (Nx2)" Date: Thu, 20 Jun 2024 20:44:30 +0200 Subject: [PATCH] font.nix syntax fix --- system-modules/fonts.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/system-modules/fonts.nix b/system-modules/fonts.nix index b2e1661..7d32cd4 100644 --- a/system-modules/fonts.nix +++ b/system-modules/fonts.nix @@ -1,4 +1,9 @@ -{ pkgs, ... }: +{ + pkgs, + # pkgs-unstable, + rice, + ... +}: { fonts.packages = with pkgs; [ noto-fonts @@ -10,6 +15,6 @@ ] ++ (with rice.font; [ base.package code.package - ]) ++ (with pkgs-unstable; [ + # ]) ++ (with pkgs-unstable; [ ]); }