From 77f8c9ad6bd5ff1e33369ff006b3d6d6f6f8f270 Mon Sep 17 00:00:00 2001 From: Harivansh Rathi Date: Tue, 31 Mar 2026 22:18:12 +0000 Subject: [PATCH] add packages --- 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 ];