diff options
author | Freya Murphy <freya@freyacat.org> | 2025-09-23 11:51:32 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-09-23 11:51:32 -0400 |
commit | c9eecca97ea27db6beb974633af936bfeda6bbdf (patch) | |
tree | f0048620a8c02ccd29d6f61d626284cf7647dfd0 /system/virt | |
parent | update commits (diff) | |
download | dotfiles-nix-main.tar.gz dotfiles-nix-main.tar.bz2 dotfiles-nix-main.zip |
Diffstat (limited to '')
-rw-r--r-- | system/virt/docker.nix | 7 |
1 files changed, 5 insertions, 2 deletions
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]; }; } |