nixdots/home/programs/terminal/tools/fastfetch.nix

14 lines
202 B
Nix
Raw Normal View History

2024-06-20 14:20:55 +00:00
{
lib,
osConfig,
...
}: let
inherit (lib) mkIf;
cfg = osConfig.myOptions.home-manager.programs.tools.fastfetch;
in {
config = mkIf cfg.enable {
programs.fastfetch.enable = true;
};
}