infrastructure/hosts/olympus/bastion/containers/common.nix
2024-10-17 17:30:48 +02:00

12 lines
292 B
Nix

# common container config
{ lib, ... }: {
imports = [
../../../../common
];
# Workaround for bug https://github.com/NixOS/nixpkgs/issues/162686
networking.useHostResolvConf = lib.mkForce false;
services.resolved.enable = true;
system.stateVersion = lib.mkDefault "24.05";
}