Modularize NixOS fonts config

This commit is contained in:
2025-11-10 16:46:39 +01:00
parent a9e65c5732
commit 56a1a081ab
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"; })
];
}