mv fastfetch to hm module
nix flake show / show-flake (push) Successful in 45s

This commit is contained in:
smayzy
2025-07-29 19:48:41 +02:00
parent 614a10248f
commit 12b0f8e27a
6 changed files with 22 additions and 5 deletions
+15
View File
@@ -0,0 +1,15 @@
{ 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;
};
};
};
}