diff --git a/hosts/vps1/configuration.nix b/hosts/vps1/configuration.nix index c64f5ef..65b2c50 100644 --- a/hosts/vps1/configuration.nix +++ b/hosts/vps1/configuration.nix @@ -23,11 +23,16 @@ }; programs.mosh.enable = true; + + environment.systemPackages = with pkgs; [ + git + vim + ]; users.users.lgm = { isNormalUser = true; description = "lgm"; - extraGroups = [ "networkmanager" "wheel" "adbusers" "docker"]; + extraGroups = [ "wheel""docker"]; shell = pkgs.fish; };