diff options
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; + }; +} + |