nixdots/home/programs/terminal/tools/fastfetch.nix
2024-07-27 01:07:07 +02:00

14 lines
202 B
Nix

{
lib,
osConfig,
...
}: let
inherit (lib) mkIf;
cfg = osConfig.myOptions.home-manager.programs.tools.fastfetch;
in {
config = mkIf cfg.enable {
programs.fastfetch.enable = true;
};
}