feat(system): add fonts and printing support

This commit is contained in:
randogoth 2026-02-04 11:30:24 +02:00
parent 98d681cf32
commit dbc5b8a1d2
5 changed files with 53 additions and 1 deletions

15
modules/system/fonts.nix Normal file
View file

@ -0,0 +1,15 @@
{ pkgs, lib, ... }:
{
fonts.packages =
let
nerdFonts = builtins.filter lib.isDerivation (lib.attrValues pkgs.nerd-fonts);
in
[
pkgs.adwaita-fonts
pkgs.open-fonts
pkgs.google-fonts
pkgs.noto-fonts
]
++ nerdFonts;
}