This commit is contained in:
Vivian 2024-05-02 09:17:40 +02:00
parent f70a18723f
commit f2767b0596
3 changed files with 11 additions and 11 deletions

View file

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

View file

@ -21,13 +21,13 @@ in {
# * fc00:x
containers = {
dns = {
autoStart = true;
inherit hostAddress hostAddress6;
localAddress = "10.42.99.1";
localAddress6 = "fc00::2";
config = ./dns.nix;
};
# dns = {
# autoStart = true;
# inherit hostAddress hostAddress6;
# localAddress = "10.42.99.1";
# localAddress6 = "fc00::2";
#
# config = ./dns.nix;
# };
};
}