my poor attempt at fixing sops (still doesn't work)

This commit is contained in:
blahai 2024-10-25 18:54:42 +03:00
parent 8c72101f6d
commit b39aae582a
No known key found for this signature in database
2 changed files with 11 additions and 9 deletions

View file

@ -1,12 +1,14 @@
{ pkgs, inputs, config, ... }:
{ inputs, lib, ... }:
{
imports = [
inputs.sops-nix.nixosModules.sops
];
imports = [ inputs.sops-nix.nixosModules.sops ];
sops = {
defaultSopsFile = ./secrets.yaml;
defaultSopsFormat = "yaml";
age.keyFile = "/home/pingu/.config/sops/age/keys.txt";
secrets = {
cloudflared.nyx.token = {};
};
};
}