feat(system): add fonts and printing support
This commit is contained in:
parent
98d681cf32
commit
dbc5b8a1d2
5 changed files with 53 additions and 1 deletions
15
modules/system/fonts.nix
Normal file
15
modules/system/fonts.nix
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue