1771220158

This commit is contained in:
2026-02-15 22:35:58 -07:00
parent 676a7c1151
commit eb69a1f4e6
4 changed files with 7 additions and 5 deletions

View File

@@ -20,8 +20,4 @@
nix.settings.experimental-features = [ "nix-command" "flakes" ];
system.stateVersion = "25.11";
environment.sessionVariables = {
SSH_AUTH_SOCK = "$HOME/.bitwarden-ssh-agent.sock";
};
}

View File

@@ -30,4 +30,8 @@ in
imports = homeModules;
home.stateVersion = "25.11";
};
home.sessionVariables = {
SSH_AUTH_SOCK = "${config.home.homeDirectory}/.bitwarden-ssh-agent.sock";
};
}

View File

@@ -7,7 +7,6 @@
};
systemd.user.sessionVariables = {
SSH_AUTH_SOCK = "${config.home.homeDirectory}/.bitwarden-ssh-agent.sock";
BROWSER = "librewolf";
};
}

View File

@@ -5,6 +5,9 @@
enable = true;
enableDefaultConfig = false;
matchBlocks = {
"*" = {
identityAgent = "~/.bitwarden-ssh-agent.sock";
};
"localhost" = {
extraOptions.UserKnownHostsFile = "/dev/null";
};