nix-config/modules/home-manager/cli/fastfetch.nix
smayzy 12b0f8e27a
All checks were successful
nix flake show / show-flake (push) Successful in 45s
mv fastfetch to hm module
2025-07-29 19:48:41 +02:00

16 lines
264 B
Nix

{ lib, smayzy, ... }:
let
inherit (lib) mkIf;
in
{
config = mkIf smayzy.base-cli-pkgs.enable {
home.file = {
".config/fastfetch" = {
source = builtins.toPath ./fastfetch;
recursive = true;
force = true;
};
};
};
}