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