diff --git a/home/work.nix b/home/work.nix index 49732cc9..c04e9e9c 100644 --- a/home/work.nix +++ b/home/work.nix @@ -1,4 +1,8 @@ {pkgs, ...}: { imports = [./default.nix ./git/work.nix ./ssh/work.nix]; home.packages = with pkgs; [openfortivpn nomachine-client teams zoom-us]; + programs.fish.functions.arch = '' + distrobox list | grep -i archlinux > /dev/null || distrobox create -n arch -i docker.io/library/archlinux:latest -y + distrobox enter arch + ''; }