This commit is contained in:
Kat Inskip 2025-07-27 12:35:52 -07:00
parent e8f6d67625
commit 743741f976
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
10 changed files with 163 additions and 22 deletions

View file

@ -0,0 +1,11 @@
{
pkgs,
lib,
...
}: let
inherit (lib.meta) getExe;
in {
programs.zsh.shellAliases = {
uwufetch = "${getExe pkgs.fastfetch} --chafa ${./nixowos.png} --logo-height 32";
};
}