mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-10 04:49:19 -08:00
12 lines
308 B
Nix
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" ];
|
|
};
|
|
}
|