9 lines
267 B
Nix
9 lines
267 B
Nix
|
let strawberry = builtins.readFile ./system/strawberry/keys/riley.pub;
|
||
|
dev-lt-63 = builtins.readFile ./system/dev-lt-63/keys/riley.pub;
|
||
|
in {
|
||
|
# Secrets for backup cloud storage provider
|
||
|
"secret/backblaze.age".publicKeys = [
|
||
|
strawberry
|
||
|
dev-lt-63
|
||
|
];
|
||
|
}
|