From c9eecca97ea27db6beb974633af936bfeda6bbdf Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Tue, 23 Sep 2025 11:51:32 -0400 Subject: only enable docker.socket --- system/virt/docker.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'system') diff --git a/system/virt/docker.nix b/system/virt/docker.nix index 2505df4..97c57ad 100644 --- a/system/virt/docker.nix +++ b/system/virt/docker.nix @@ -8,8 +8,11 @@ cfg = config.virt.docker; in { config = mkIf cfg.enable { - virtualisation.docker.enable = true; - virtualisation.docker.storageDriver = "btrfs"; + virtualisation.docker = { + enable = true; + enableOnBoot = false; + storageDriver = "btrfs"; + }; users.groups.docker.members = [config.user]; }; } -- cgit v1.2.3-freya