infrastructure/hosts/olympus/bastion/containers/common.nix
2024-07-07 10:58:58 +02:00

11 lines
291 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";
}