2023-05-17 17:10:18 +01:00
|
|
|
{pkgs, ...}: {
|
2023-06-09 10:15:24 +01:00
|
|
|
imports = [./default.nix ./git/work.nix ./ssh/work.nix];
|
2023-06-16 14:05:17 +01:00
|
|
|
home.packages = with pkgs; [openfortivpn nomachine-client teams-for-linux zoom-us];
|
2023-06-13 13:19:50 +01:00
|
|
|
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
|
|
|
|
'';
|
2023-04-25 14:43:08 +01:00
|
|
|
}
|