ssh management
This commit is contained in:
parent
366ad323f2
commit
9f66b0fed1
2 changed files with 33 additions and 0 deletions
|
@ -17,6 +17,7 @@ in {
|
||||||
./neovim.nix
|
./neovim.nix
|
||||||
./starship.nix
|
./starship.nix
|
||||||
./zellij.nix
|
./zellij.nix
|
||||||
|
./ssh.nix
|
||||||
];
|
];
|
||||||
home.packages = with pkgs;
|
home.packages = with pkgs;
|
||||||
[
|
[
|
||||||
|
|
32
nix/home-manager/modules/packages/ssh.nix
Normal file
32
nix/home-manager/modules/packages/ssh.nix
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
|
inherit (pkgs.stdenv.hostPlatform) isDarwin isLinux;
|
||||||
|
_1pass_socket =
|
||||||
|
if isDarwin
|
||||||
|
then "${config.home.homeDirectory}/Library/Group Containers/2BUA8C4S2C.com.1password/t/agent.sock"
|
||||||
|
else "${config.home.homeDirectory}/.1password/agent.sock";
|
||||||
|
in {
|
||||||
|
programs.ssh = {
|
||||||
|
enable = true;
|
||||||
|
includes =
|
||||||
|
if isDarwin
|
||||||
|
then ["${config.home.homeDirectory}/.colima/ssh_config"]
|
||||||
|
else [];
|
||||||
|
matchBlocks = {
|
||||||
|
"acicchetti.dev" = {
|
||||||
|
extraOptions = {
|
||||||
|
"IdentityAgent" = "'${_1pass_socket}'\n";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
"*.sr.ht" = {
|
||||||
|
extraOptions = {
|
||||||
|
"IdentityAgent" = "'${_1pass_socket}'\n";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue