ssh-agent: add assertion and fix news entry (#4210)
See https://github.com/nix-community/home-manager/pull/4178#discussion_r1249460142 Signed-off-by: Sumner Evans <me@sumnerevans.com>
This commit is contained in:
parent
b70db52ff0
commit
a6d1d954b8
|
@ -1138,7 +1138,7 @@ in
|
||||||
|
|
||||||
{
|
{
|
||||||
time = "2023-06-30T14:46:22+00:00";
|
time = "2023-06-30T14:46:22+00:00";
|
||||||
condition = config.services.ssh-agent.enable;
|
condition = hostPlatform.isLinux;
|
||||||
message = ''
|
message = ''
|
||||||
A new module is available: 'services.ssh-agent'
|
A new module is available: 'services.ssh-agent'
|
||||||
'';
|
'';
|
||||||
|
|
|
@ -14,6 +14,11 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
|
assertions = [
|
||||||
|
(lib.hm.assertions.assertPlatform "services.ssh-agent" pkgs
|
||||||
|
lib.platforms.linux)
|
||||||
|
];
|
||||||
|
|
||||||
home.sessionVariablesExtra = ''
|
home.sessionVariablesExtra = ''
|
||||||
if [[ -z "$SSH_AUTH_SOCK" ]]; then
|
if [[ -z "$SSH_AUTH_SOCK" ]]; then
|
||||||
export SSH_AUTH_SOCK=$XDG_RUNTIME_DIR/ssh-agent
|
export SSH_AUTH_SOCK=$XDG_RUNTIME_DIR/ssh-agent
|
||||||
|
|
Loading…
Reference in a new issue