From a31490012195fb6009d2088fb40c54b015d4366c Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Sat, 14 Jun 2025 20:11:15 -0400 Subject: [PATCH] Add dig to basic utilties --- nixos/modules/base.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/nixos/modules/base.nix b/nixos/modules/base.nix index a8da9b8..5871267 100644 --- a/nixos/modules/base.nix +++ b/nixos/modules/base.nix @@ -14,14 +14,19 @@ ]; environment.systemPackages = with pkgs; [ + # Basic text editing and git neovim git + # Basic terminal and cli utilities tmux + just + # Basic nix utilities alejandra nix-index + # Basic networking utilities curl wget - just + dig ]; system.stateVersion = "24.11";