Regenerated

This commit is contained in:
2026-03-22 17:16:57 +00:00
parent 3de4e8ef79
commit cda6de2bd8
33 changed files with 1557 additions and 1 deletions
@@ -0,0 +1,12 @@
{ lib, pkgs, config, ... }:
{
options.enableFonts = lib.mkEnableOption "Enable nerd fonts";
config = lib.mkIf (config.enableFonts or false) {
fonts.packages = with pkgs; [
nerd-fonts.iosevka
nerd-fonts.fira-code
];
};
}