10 lines
162 B
Nix
10 lines
162 B
Nix
{ config, lib, options, ... }:
|
|
|
|
{
|
|
config.age = {
|
|
identityPaths = options.age.identityPaths.default ++ [
|
|
"/home/alarsyo/.ssh/id_ed25519"
|
|
];
|
|
};
|
|
}
|