dotfiles.nix/systems/darwin/work.nix

21 lines
460 B
Nix
Raw Permalink Normal View History

2024-07-18 14:16:04 +00:00
{ lib, ... }:
{
homebrew.casks = [
"itsycal"
"pallotron-yubiswitch"
];
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"
'';
}
];
2023-10-26 02:37:42 +00:00
}