nixos/home-manager/software/vagrant-wsl/default.nix

14 lines
254 B
Nix
Raw Normal View History

2023-05-10 15:15:11 +02:00
{ unstable }: { pkgs, ... }:
2022-01-20 14:14:18 +01:00
{
home.packages = with pkgs; [
2023-05-10 15:15:11 +02:00
unstable.vagrant
2022-01-20 14:14:18 +01:00
];
programs.bash = {
sessionVariables = {
VAGRANT_WSL_ENABLE_WINDOWS_ACCESS = 1;
PATH = "$PATH:/mnt/c/Program Files/Oracle/VirtualBox";
};
};
}