mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-13 10:34:10 -05:00
18 lines
325 B
Nix
18 lines
325 B
Nix
{
|
|
lib,
|
|
inputs,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
lib.mkIf config.user.overseer.enable {
|
|
sops = {
|
|
defaultSopsFile = inputs.nix-secrets.secrets.overseer;
|
|
age.keyFile = "/var/lib/sops-nix/key.txt";
|
|
age.generateKey = true;
|
|
};
|
|
|
|
# Restic secrets
|
|
sops.secrets."restic/url" = {};
|
|
sops.secrets."restic/key" = {};
|
|
}
|