all repos — char/flake @ a266522d7884322d03ca676c535f353b01de1502

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}