removed passphrase from deploy key
This commit is contained in:
parent
9df3bf2ff8
commit
578ddc7921
|
@ -58,11 +58,11 @@
|
||||||
"nix-secrets": {
|
"nix-secrets": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1715968354,
|
"lastModified": 1716024725,
|
||||||
"narHash": "sha256-SqWi7qdDTdWV8eNfe/AgPI2qa+CR9xvSqeW+bUlgrQs=",
|
"narHash": "sha256-rAdVGcOuQPcFJ2FmufePv2oTvS7FKNLdenwmo2O11IY=",
|
||||||
"ref": "refs/heads/master",
|
"ref": "refs/heads/master",
|
||||||
"rev": "e2756ddf1b86a9fa574740fe7e9d12c3996a24a1",
|
"rev": "a9a7e1913a46fa4ab5deea15e0d469579d9d9dac",
|
||||||
"revCount": 10,
|
"revCount": 11,
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "ssh://git@git.bitlab21.com/sam/nix-secrets.git"
|
"url": "ssh://git@git.bitlab21.com/sam/nix-secrets.git"
|
||||||
},
|
},
|
||||||
|
|
|
@ -24,6 +24,12 @@ in
|
||||||
"ssh_keys/${username}@${hostname}/${username}@${hostname}-ssh-ed25519.pub" = {
|
"ssh_keys/${username}@${hostname}/${username}@${hostname}-ssh-ed25519.pub" = {
|
||||||
path = "${homeDirectory}/.ssh/${username}@${hostname}-ssh-ed25519.pub";
|
path = "${homeDirectory}/.ssh/${username}@${hostname}-ssh-ed25519.pub";
|
||||||
};
|
};
|
||||||
|
"ssh_keys/deploy_key/deploy_key-ssh-ed25519" = {
|
||||||
|
path = "${homeDirectory}/.ssh/deploy_key-ssh-ed25519";
|
||||||
|
};
|
||||||
|
"ssh_keys/deploy_key/deploy_key-ssh-ed25519.pub" = {
|
||||||
|
path = "${homeDirectory}/.ssh/deploy_key-ssh-ed25519.pub";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue