From bcc20c9c03bf70e002d76d1062e8c69b74e4394f Mon Sep 17 00:00:00 2001 From: Chandler Swift Date: Wed, 9 Jul 2025 16:10:46 -0500 Subject: [PATCH] sam: Enable Docker --- sam/configuration.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sam/configuration.nix b/sam/configuration.nix index 54d77af..a7f33a0 100644 --- a/sam/configuration.nix +++ b/sam/configuration.nix @@ -63,7 +63,7 @@ users.users.chandler = { isNormalUser = true; description = "Chandler Swift"; - extraGroups = [ "networkmanager" "wheel" ]; + extraGroups = [ "networkmanager" "wheel" "docker"]; packages = with pkgs; [ kdePackages.kate ]; @@ -74,6 +74,8 @@ programs.firefox.enable = true; + virtualisation.docker.enable = true; + environment.systemPackages = with pkgs; [ git ];