all repos — char/flake @ 206cbde6235bc701ea187e96b2b51b420b8bc1b9

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      ffmpeg-full
10      podman-compose
11    ]
12    ++ [
13      unstable-pkgs.zed-editor.remote_server
14    ];
15
16  virtualisation.podman.enable = true;
17}