24 lines
457 B
Nix
24 lines
457 B
Nix
{
|
|
config,
|
|
lib,
|
|
options,
|
|
...
|
|
}: {
|
|
config.age = {
|
|
secrets = let
|
|
toSecret = name: {...} @ attrs:
|
|
{
|
|
file = ./../../modules/secrets + "/${name}.age";
|
|
}
|
|
// attrs;
|
|
in
|
|
lib.mapAttrs toSecret {
|
|
"restic-backup/hephaestus-credentials" = {};
|
|
"restic-backup/hephaestus-password" = {};
|
|
|
|
"users/alarsyo-hashed-password" = {};
|
|
"users/root-hashed-password" = {};
|
|
};
|
|
};
|
|
}
|