infrastructure/config/users/kat/personal/shell.nix
2021-09-03 00:00:16 +01:00

12 lines
306 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"];
};
}