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; [ ]); }