[development] Adds more development utils.

This commit is contained in:
2025-04-28 18:28:20 -07:00
parent 58665f6fcb
commit 6fd171ae12
4 changed files with 21 additions and 6 deletions

View File

@@ -0,0 +1,11 @@
{ pkgs, ... }:
{
# Use podman over docker
services.podman = {
enable = true;
};
home.packages = with pkgs; [
podman-compose
];
}