all repos — char/flake @ c38e2de85140f4267b031f149f584afd7fe56839

nixos flake

profiles/common/dev.nix (view raw)

 1{ pkgs, unstable-pkgs, ... }:
 2{
 3  environment.systemPackages =
 4    with pkgs;
 5    [
 6      volta
 7      rustup
 8      uv
 9      python3
10      ripgrep
11      fd
12      ffmpeg-full
13      podman-compose
14    ]
15    ++ [
16      unstable-pkgs.zed-editor.remote_server
17    ];
18
19  virtualisation.podman.enable = true;
20}