mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
11 lines
188 B
Nix
11 lines
188 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.meta) getExe;
|
|
in {
|
|
programs.zsh.shellAliases = {
|
|
uwufetch = "${getExe pkgs.fastfetch} --chafa ${./nixowos.png} --logo-height 32";
|
|
};
|
|
}
|