add packages (#16)
Some checks are pending
quality / changes (push) Waiting to run
quality / Flake Check (push) Blocked by required conditions
quality / Nix Format Check (push) Blocked by required conditions
quality / Deploy netty (push) Blocked by required conditions

This commit is contained in:
Hari 2026-03-31 18:20:44 -04:00 committed by GitHub
parent a711c9312d
commit 1e4ccc2db6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -159,7 +159,10 @@ in
users.users.${username} = { users.users.${username} = {
isNormalUser = true; isNormalUser = true;
extraGroups = [ "wheel" ]; extraGroups = [
"wheel"
"docker"
];
shell = pkgs.zsh; shell = pkgs.zsh;
openssh.authorizedKeys.keys = [ openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFbL9gJC0IPX6XUdJSWBovp+zmHvooMmvl91QG3lllwN rathiharivansh@gmail.com" "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFbL9gJC0IPX6XUdJSWBovp+zmHvooMmvl91QG3lllwN rathiharivansh@gmail.com"
@ -182,10 +185,13 @@ in
services.journald.extraConfig = "MaxRetainedFileSec=1week"; services.journald.extraConfig = "MaxRetainedFileSec=1week";
virtualisation.docker.enable = true;
environment.systemPackages = packageSets.extras ++ [ environment.systemPackages = packageSets.extras ++ [
pkgs.bubblewrap pkgs.bubblewrap
pkgs.pnpm pkgs.pnpm
pkgs.nodejs pkgs.nodejs
pkgs.php
sandboxAgentPackage sandboxAgentPackage
]; ];