mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
13 lines
227 B
Nix
13 lines
227 B
Nix
_: let
|
|
secretConfig = {
|
|
format = "yaml";
|
|
sopsFile = ./secrets.yaml;
|
|
};
|
|
in {
|
|
sops.secrets.cloudflare_email = secretConfig;
|
|
sops.secrets.cloudflare_api_key = secretConfig;
|
|
|
|
scalpels = [
|
|
./scalpel.nix
|
|
];
|
|
}
|