pinwheel: Extract fonts to fonts module

This commit is contained in:
Alexander Heldt
2023-10-16 22:32:07 +02:00
parent 5718df21a5
commit 65b43bfd84
2 changed files with 10 additions and 8 deletions

View File

@@ -96,14 +96,6 @@
bash bash
]; ];
fonts.packages = with pkgs; [
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
nerdfonts
liberation_ttf
];
config-manager.flakePath = "/home/alex/config"; config-manager.flakePath = "/home/alex/config";
mod = { mod = {

View File

@@ -0,0 +1,10 @@
{ pkgs, ... }:
{
fonts.packages = [
pkgs.noto-fonts
pkgs.noto-fonts-cjk
pkgs.noto-fonts-emoji
pkgs.nerdfonts
pkgs.liberation_ttf
];
}