feat: add asdf

Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
This commit is contained in:
Lander Van den Bulcke 2025-01-29 16:40:48 +01:00
parent 5091ea94df
commit 99ba3631f3
Signed by: lander
GPG key ID: 0142722B4B0C536F
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
asdf-vm
];
programs.zsh = {
enable = true;
initExtra = ''
. "${pkgs.asdf-vm}/share/asdf-vm/asdf.sh"
autoload -Uz bashcompinit && bashcompinit
. "${pkgs.asdf-vm}/share/asdf-vm/completions/asdf.bash"
'';
};
}

View file

@ -4,6 +4,7 @@
imports = [ imports = [
./git ./git
./asdf.nix
./bat.nix ./bat.nix
./btop.nix ./btop.nix
./starship.nix ./starship.nix