update work profile example

This commit is contained in:
John Bowdre 2023-08-07 12:10:06 -05:00
parent 2a1f31dbad
commit 413a693334
2 changed files with 5 additions and 1 deletions

View file

@ -1,4 +1,4 @@
{ pkgs, ... }: { { pkgs, config, ... }: {
imports = [ imports = [
./fish.nix ./fish.nix
]; ];

View file

@ -9,5 +9,9 @@
sshroot = "ssh -i ~/.ssh/id_ed25519-root -l root"; sshroot = "ssh -i ~/.ssh/id_ed25519-root -l root";
vpnkit = "wsl.exe -d wsl-vpnkit --cd /app service wsl-vpnkit"; vpnkit = "wsl.exe -d wsl-vpnkit --cd /app service wsl-vpnkit";
}; };
functions = {
update-dotfiles = "nix flake lock --update-input dotfiles ${config.home.homeDirectory}/.dotfiles/ && switch-home";
};
}; };
} }