From 9d1363f2fa33bf590148ece64457272502a310dc Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Mon, 2 Dec 2024 20:25:06 +0100 Subject: add developer tools --- nixos/parts/dev.nix | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 nixos/parts/dev.nix (limited to 'nixos/parts/dev.nix') diff --git a/nixos/parts/dev.nix b/nixos/parts/dev.nix new file mode 100644 index 0000000..e2ac1f6 --- /dev/null +++ b/nixos/parts/dev.nix @@ -0,0 +1,29 @@ +{ config, pkgs, ... }: + +{ + environment.systemPackages = with pkgs; [ + rustup + python313 + nodejs_22 + + # CLI tools + docker-compose + gnumake + jq + just + sqlite-interactive + tokei + + gcc # rustc fails if cc linker isn't found + chromium + + vscodium + # I'm installing extensions via my install-imperative script. + ]; + + virtualisation.podman = { + enable = true; + dockerSocket.enable = true; + }; +} + -- cgit v1.2.3