mirror of https://github.com/wlcx/home.git
13 lines
479 B
Nix
13 lines
479 B
Nix
{ pkgs, lib, ... }: {
|
|
# Mac specific packages.
|
|
# TODO: have this in a central packages place rather than here
|
|
home.packages = with pkgs; [ pngpaste mypkgs.qrclip ];
|
|
# Use secretive for SSH agent
|
|
programs.ssh.matchBlocks.all = lib.mkIf pkgs.stdenv.isDarwin {
|
|
host = "*";
|
|
extraOptions."IdentityAgent" =
|
|
"~/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh";
|
|
};
|
|
programs.zsh.initExtra = "eval $(/opt/homebrew/bin/brew shellenv)";
|
|
}
|