mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-13 18:44:11 -05:00
17 lines
313 B
Nix
17 lines
313 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
inputs,
|
|
config,
|
|
...
|
|
}: let
|
|
sopsFolder = builtins.toString inputs.nix-secrets + "/sops";
|
|
in {
|
|
sops = {
|
|
defaultSopsFile = "${sopsFolder}/${config.hostSpec.hostName}.yaml";
|
|
validateSopsFiles = false;
|
|
age = {
|
|
sshKeyPaths = ["/etc/ssh/ssh_host_ed25519_key"];
|
|
};
|
|
};
|
|
}
|