From 1e4ccc2db6f1dd8658eb37beb044a5ea37507ce8 Mon Sep 17 00:00:00 2001 From: Hari <73809867+harivansh-afk@users.noreply.github.com> Date: Tue, 31 Mar 2026 18:20:44 -0400 Subject: [PATCH] add packages (#16) --- hosts/netty/configuration.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/hosts/netty/configuration.nix b/hosts/netty/configuration.nix index 8cbcdf1..ce2082e 100644 --- a/hosts/netty/configuration.nix +++ b/hosts/netty/configuration.nix @@ -159,7 +159,10 @@ in users.users.${username} = { isNormalUser = true; - extraGroups = [ "wheel" ]; + extraGroups = [ + "wheel" + "docker" + ]; shell = pkgs.zsh; openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFbL9gJC0IPX6XUdJSWBovp+zmHvooMmvl91QG3lllwN rathiharivansh@gmail.com" @@ -182,10 +185,13 @@ in services.journald.extraConfig = "MaxRetainedFileSec=1week"; + virtualisation.docker.enable = true; + environment.systemPackages = packageSets.extras ++ [ pkgs.bubblewrap pkgs.pnpm pkgs.nodejs + pkgs.php sandboxAgentPackage ];