diff options
author | Martin Fischer <martin@push-f.com> | 2024-12-02 20:25:06 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2024-12-11 08:37:52 +0100 |
commit | 9d1363f2fa33bf590148ece64457272502a310dc (patch) | |
tree | 701d39bc812904731f2594905ea585b78ffd4f35 /nixos | |
parent | f5af22a8d108c9008b1a2b6c99e65ff910518288 (diff) |
add developer tools
Diffstat (limited to 'nixos')
-rw-r--r-- | nixos/hamac-configuration.nix | 1 | ||||
-rw-r--r-- | nixos/parts/dev.nix | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/nixos/hamac-configuration.nix b/nixos/hamac-configuration.nix index af97111..4c50cc1 100644 --- a/nixos/hamac-configuration.nix +++ b/nixos/hamac-configuration.nix @@ -10,6 +10,7 @@ ./parts/basics.nix ./parts/graphical.nix ./parts/tailscale.nix + ./parts/dev.nix ]; # Bootloader. 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; + }; +} + |