This commit is contained in:
m3tam3re
2024-09-05 14:34:40 +02:00
parent 1f6e2b3a64
commit 8f009006f9
6 changed files with 322 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
{
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.features.cli.neofetch;
in {
options.features.cli.neofetch.enable = mkEnableOption "enable neofetch";
config = mkIf cfg.enable {
home.packages = with pkgs; [neofetch];
};
}