Nix Flakes configuration for MacOS, NixOS and WSL
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: manage to make podman work with compose

cosmeak 009cb416 d16a4264

+8 -7
+8 -7
modules/common/suites/development.nix
··· 9 9 10 10 config = lib.mkIf cfg.enable ({ 11 11 environment.systemPackages = with pkgs; [ 12 - zed-editor # gui code editor 13 - helix # modal code editor 14 - bruno # ide for testing apis 15 - dbeaver-bin # database client 16 - git # versionning tool 17 - lazygit # git tui helper 18 - docker # container tool -> replacement of docker 12 + zed-editor # gui code editor 13 + helix # modal code editor 14 + bruno # ide for testing apis 15 + dbeaver-bin # database client 16 + git # versionning tool 17 + lazygit # git tui helper 18 + podman # container tool -> replacement of docker 19 + podman-compose # compose provider for podman 19 20 ]; 20 21 }); 21 22 }