mirror of
https://github.com/divnix/digga.git
synced 2024-12-02 07:42:49 +03:00
10 lines
159 B
Nix
10 lines
159 B
Nix
let
|
|
# set ssh public keys here for your system and user
|
|
system = "";
|
|
user = "";
|
|
allKeys = [ system user ];
|
|
in
|
|
{
|
|
"secret.age".publicKeys = allKeys;
|
|
}
|