update system

This commit is contained in:
2024-12-19 12:28:04 +01:00
parent 4e6c0f1603
commit dbd50e4a65
15 changed files with 85 additions and 199 deletions

View File

@@ -0,0 +1,24 @@
{
pkgs,
lib,
config,
...
}:
with lib;
let
cfg = config.fonts.nerd-fonts;
in
{
options.fonts.nerd-fonts = {
enable = mkEnableOption "Enable nerdfonts";
};
config = mkIf cfg.enable {
fonts = {
packages = with pkgs; [
nerd-fonts.symbols-only
];
};
};
}