initial commit

This commit is contained in:
2024-11-09 11:52:23 +05:00
commit 6bef6874b7
11 changed files with 437 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
{ config, pkgs, ... }:
let
onePassPath = "~/.1password/agent.sock";
in {
programs.ssh = {
enable = true;
extraConfig = "IdentityAgent ${onePassPath}";
};
}