nix-config/hosts/minime/default.nix

18 lines
341 B
Nix

{ config, ... }:
{
imports = [
./configuration.nix
./hardware-configuration.nix
./networking
./zfs.nix
];
sops.defaultSopsFile = ./secrets.yaml;
sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
sops.secrets = {
"wg/0xa-mgmt" = {
owner = config.users.users.systemd-network.name;
};
};
}