15 lines
246 B
Nix
15 lines
246 B
Nix
{
|
|
den.aspects.fish = {
|
|
nixos = { pkgs, ...}: {
|
|
programs.fish.shellAliases = {
|
|
box = "ssh box.bug.tools";
|
|
};
|
|
|
|
environment.systemPackages = with pkgs.fishPlugins; [
|
|
done
|
|
sponge
|
|
];
|
|
};
|
|
};
|
|
}
|