Modularize NixOS fonts config

main
Hektor Misplon 2025-11-10 16:46:39 +01:00
parent c267ac6fc7
commit e92d5c0da9
3 changed files with 13 additions and 4 deletions

View File

@ -13,6 +13,7 @@
../../modules/printing.nix
../../modules/localization.nix
../../modules/x.nix
../../modules/fonts
];
nix.settings.experimental-features = [
@ -73,8 +74,4 @@
PrintMotd = false;
};
};
fonts.packages = with pkgs; [
(iosevka-bin.override { variant = "SGr-IosevkaTermSS08"; })
];
}

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"; })
];
}