ssh: fix fhs permissions
Signed-off-by: Myned <dev@bjork.tech>
This commit is contained in:
parent
cfe0a8b886
commit
7665a9a4cc
1 changed files with 15 additions and 6 deletions
|
@ -15,13 +15,22 @@ in {
|
|||
StrictHostKeyChecking no
|
||||
'';
|
||||
|
||||
home-manager.users.${config.custom.username}.programs.ssh = {
|
||||
enable = true;
|
||||
home-manager.users.${config.custom.username} = {
|
||||
programs.ssh = {
|
||||
enable = true;
|
||||
|
||||
extraConfig = ''
|
||||
Host *
|
||||
IdentityAgent ~/.1password/agent.sock
|
||||
'';
|
||||
extraConfig = ''
|
||||
Host *
|
||||
IdentityAgent ~/.1password/agent.sock
|
||||
'';
|
||||
};
|
||||
|
||||
# Work around FHS permissions
|
||||
# https://github.com/nix-community/home-manager/issues/322#issuecomment-1856128020
|
||||
home.file.".ssh/config" = {
|
||||
target = ".ssh/config_source";
|
||||
onChange = "cat ~/.ssh/config_source > ~/.ssh/config && chmod 400 ~/.ssh/config";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue