13 lines
277 B
Nix
13 lines
277 B
Nix
{ inputs, pkgs, ... }:
|
|
|
|
{
|
|
imports = [ inputs.sops-nix.nixosModules.sops ];
|
|
|
|
sops = {
|
|
defaultSopsFile = ../../secrets/secrets.yaml;
|
|
age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
|
|
secrets = { };
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [ sops ];
|
|
}
|