dotfiles.nix/systems/darwin/work.nix

15 lines
422 B
Nix
Raw Normal View History

2024-01-23 19:05:02 +00:00
{ lib, ... }: {
homebrew.casks = [ "itsycal" "pallotron-yubiswitch" ];
2023-10-26 02:37:42 +00:00
home-manager.sharedModules = [{
launchd.agents.tarsnap.enable = lib.mkForce false;
programs.ssh.matchBlocks.devbox = {
hostname = "csdev6";
forwardAgent = true;
serverAliveInterval = 120;
};
programs.fish.functions.devbox.body = ''
ssh -t devbox "agenttmux attach; or agenttmux new -s yelp"
'';
}];
}