mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 08:19:42 +00:00
14 lines
202 B
Nix
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;
|
||
|
};
|
||
|
}
|