char/flake

nixos flake

git clone https://git.t4t.associates/char/flake

Charlotte Somadd microvms to runestone and set static ips8572796

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