Modularize NixOS fonts config

This commit is contained in:
2025-11-10 16:46:39 +01:00
parent c267ac6fc7
commit e92d5c0da9
3 changed files with 13 additions and 4 deletions

View File

@@ -0,0 +1,5 @@
{
imports = [
./iosevka.nix
];
}

View File

@@ -0,0 +1,7 @@
{ pkgs, ... }:
{
fonts.packages = with pkgs; [
(iosevka-bin.override { variant = "SGr-IosevkaTermSS08"; })
];
}