mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-09 20:32:18 +00:00
17 lines
No EOL
557 B
Nix
17 lines
No EOL
557 B
Nix
{ pkgs, lib, config, ... }: {
|
|
programs.fish = {
|
|
# Shell overrides for work
|
|
|
|
shellAbbrs = rec {
|
|
putmykey = "ssh-copy-id -i ~/.ssh/id_ed25519";
|
|
putrootkey = "ssh-copy-id -i ~/.ssh/id_ed25519-root";
|
|
ssh = "ssh -i ~/.ssh/id_ed25519 -l work-user";
|
|
sshroot = "ssh -i ~/.ssh/id_ed25519-root -l root";
|
|
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";
|
|
};
|
|
};
|
|
} |