9 lines
349 B
Nix
9 lines
349 B
Nix
{pkgs, ...}: {
|
|
imports = [./default.nix ./git/work.nix ./ssh/work.nix];
|
|
home.packages = with pkgs; [openfortivpn nomachine-client teams-for-linux 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
|
|
'';
|
|
}
|