nixos-config/modules/home/all/just.nix
2024-09-28 18:01:53 -04:00

13 lines
281 B
Nix

{ pkgs, ... }:
{
programs.bash = {
# https://just.systems/man/en/chapter_65.html
# FIXME: doesn't work (macos)
initExtra = ''
# complete -F _just -o bashdefault -o default j
'';
};
home.shellAliases.j = "just";
home.packages = with pkgs; [ just ];
}