mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-28 00:05:00 +08:00
13 lines
281 B
Nix
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 ];
|
|
}
|