NixOS + home-manager configs, mirrored from GitLab SaaS. gitlab.com/andreijiroh-dev/nixops-config
nix-flake nixos home-manager nixpkgs nix-flakes
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore(lairland): set custom data-root for docker engine

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>

+12 -1
+12 -1
hosts/lairland/configuration.nix
··· 20 20 "lairland.local" 21 21 "lairland.tailnet" 22 22 "lairland.fawn-cod.ts.net" 23 + "nextcloud.andreijiroh.dev" 24 + "coolify.andreijiroh.dev" 23 25 ]; 24 26 } 25 27 // localNetwork.halilifam; ··· 83 85 environment.systemPackages = with pkgs; [ 84 86 coolify-compose 85 87 ]; 86 - } 88 + 89 + # Docker related chores 90 + virtualisation.docker = { 91 + daemon.settings = { 92 + data-root = "/opt/docker-data/engine"; 93 + ipv6 = true; 94 + live-restore = true; 95 + }; 96 + }; 97 + }