dot.nix/host/rune/modules/fish/default.nix

8 lines
124 B
Nix

{ pkgs, ... }:
{
programs.fish = {
shellInit = ''
source "${pkgs.asdf-vm}/share/asdf-vm/asdf.fish"
'';
};
}