From b043d0630e5c92ac0d87699840e237bb11491124 Mon Sep 17 00:00:00 2001 From: Jacob Bachmann Date: Mon, 18 Aug 2025 22:23:59 +0200 Subject: [PATCH] feat(PABU): add some more essentials --- hosts/PABU/default.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/hosts/PABU/default.nix b/hosts/PABU/default.nix index 9ff8c45..a792173 100644 --- a/hosts/PABU/default.nix +++ b/hosts/PABU/default.nix @@ -34,13 +34,16 @@ security.sudo.wheelNeedsPassword = false; + # welcome to nix programs.nix-ld = { enable = true; }; environment.systemPackages = with pkgs; [ + # bare essentials git neovim + # mason needs stuff gcc clang-tools cargo @@ -50,8 +53,16 @@ python3 go + # mason needs stuff unzip + # telescope + fzf + ripgrep + + # stuff + nixfmt-rfc-style + ]; system.stateVersion = "24.05";