minor tweaks

This commit is contained in:
Satria 2026-03-02 21:51:09 +07:00
commit 4bf14275e7
3 changed files with 23 additions and 21 deletions

View file

@ -1,12 +1,29 @@
{ ... }: {
{ lib, ... }: {
imports = [
./homelab/containers.nix
./homelab/movies.nix
./homelab/photos.nix
./homelab/share.nix
./homelab/proxy.nix
./homelab/auth.nix
./homelab/dash.nix
./homelab/dns.nix
./homelab/git.nix
./homelab/ai.nix
./base.nix
];
virtualisation = {
oci-containers.backend = "docker";
docker = {
enable = true;
autoPrune.enable = true;
enableOnBoot = true;
};
};
networking = {
networkmanager.dns = "none";
nameservers = lib.mkForce [ "127.0.0.1" ];
};
}