Move fonts configuration
All checks were successful
/ check (push) Successful in 1m36s

This commit is contained in:
Oliver Davies 2025-07-25 00:29:49 +01:00
parent 6a12ea4b0e
commit 9eca4f3e7b
4 changed files with 16 additions and 32 deletions

16
modules2/fonts.nix Normal file
View file

@ -0,0 +1,16 @@
{
flake.modules.nixos.pc =
{ pkgs, ... }:
{
fonts = {
fontconfig.enable = true;
packages = with pkgs; [
nerd-fonts.jetbrains-mono
nerd-fonts.meslo-lg
terminus_font
terminus_font_ttf
];
};
};
}