infra/nix/os/profiles/containers/configuration.nix

9 lines
208 B
Nix
Raw Normal View History

2023-02-07 18:23:51 +01:00
{...}: {
nixpkgs.overlays = builtins.attrValues (import ../../../overlays);
2019-02-03 14:31:21 +01:00
2022-03-20 16:40:47 +01:00
networking.useHostResolvConf = false;
2023-02-07 18:23:51 +01:00
services.resolved = {enable = true;};
2022-03-20 16:40:47 +01:00
2023-02-07 18:23:51 +01:00
imports = [../../modules/ddclient-ovh.nix];
2019-02-03 14:31:21 +01:00
}