also commit fonts file

This commit is contained in:
Osman Faruk Bayram 2024-10-26 18:07:29 +03:00
parent 9b75c8036d
commit 309d4730e8
2 changed files with 17 additions and 1 deletions

16
common/fonts.nix Normal file
View file

@ -0,0 +1,16 @@
{ pkgs, lib, config, ... }: {
fonts.packages = with pkgs; [
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
liberation_ttf
fira-code
fira-code-symbols
mplus-outline-fonts.githubRelease
dina-font
nerdfonts
proggyfonts
];
}

View file

@ -5,7 +5,7 @@
{ config, pkgs, pkgs-unstable, system-label, ... }:
{
imports = [ # Include the results of the hardware scan.
imports = [
./hardware-configuration.nix
../../common/fonts.nix
];