16 lines
264 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
}
|