From 21d60bd1853c0eccd60538d0125be7d4bb3986e4 Mon Sep 17 00:00:00 2001 From: Joeri Exelmans Date: Sat, 27 Sep 2025 09:23:09 +0200 Subject: [PATCH] enable docker on server --- deemz.org/configuration.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/deemz.org/configuration.nix b/deemz.org/configuration.nix index 73a66d6..f811d34 100644 --- a/deemz.org/configuration.nix +++ b/deemz.org/configuration.nix @@ -131,7 +131,7 @@ let secrets = import ../secrets.nix; in users.users.maestro = { isNormalUser = true; - extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user. + extraGroups = [ "wheel" "docker" ]; # Enable ‘sudo’ for the user. }; programs.gnupg.agent = { @@ -360,6 +360,10 @@ let secrets = import ../secrets.nix; in # UPnP media playback (local network only) services.gnome.rygel.enable = true; + virtualisation.docker = { + enable = true; + }; + # This value determines the NixOS release from which the default # settings for stateful data, like file locations and database versions