infrastructure/config/users/kat/personal/shell.nix
2021-09-04 01:14:17 +01:00

12 lines
308 B
Nix

{ config, lib, pkgs, ... }: with lib;
{
home.shell.functions = {
nano = ''
${pkgs.kitty}/bin/kitty +kitten icat ${./nano.png}
'';
};
programs.zsh = {
shellAliases = mapListToAttrs (attr: nameValuePair "abby${attr}" "mpv $(bitw get secrets/abby -f ${attr})") [ "radio" "tv" ];
};
}