nix-config/hosts/minime/default.nix

19 lines
341 B
Nix
Raw Normal View History

2025-01-19 20:46:38 +01:00
{ config, ... }:
2025-01-11 03:55:19 +01:00
{
2025-01-02 19:32:39 +00:00
imports = [
./configuration.nix
./hardware-configuration.nix
2025-01-12 13:45:55 +01:00
./networking
2025-01-02 19:32:39 +00:00
./zfs.nix
];
2025-01-19 20:46:38 +01:00
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;
};
};
2025-01-02 19:32:39 +00:00
}