infrastructure/hosts/olympus/bastion/containers/common.nix
Vivian 868112e4cc
Some checks failed
Lint / lint (push) Failing after 2m38s
various updates
2024-03-18 17:12:51 +01:00

12 lines
384 B
Nix

# common container config
{ lib, home-manager, ... }: {
imports = [
# ../../../../common/modules
home-manager.nixosModules.home-manager # TODO: I don't like this
];
# 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";
}