all repos — char/flake @ 3099963175bc1905c8ed32b7024281aa139c734a

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}