all repos — char/flake @ c9224fa9fb35ca85ead8bb8225df20e26d959352

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