nixcfg/homeManagerModules/apps/fastfetch/default.nix

12 lines
241 B
Nix
Raw Permalink Normal View History

2024-05-04 07:02:48 -04:00
{
config,
lib,
pkgs,
2024-05-04 07:02:48 -04:00
...
}: {
config = lib.mkIf config.ar.home.apps.fastfetch.enable {
2024-05-04 07:02:48 -04:00
home.packages = [pkgs.fastfetch];
2024-08-08 16:50:50 -04:00
xdg.configFile."fastfetch/config.jsonc".text = lib.generators.toJSON {} (import ./config.nix);
2024-05-04 07:02:48 -04:00
};
}