This repository has been archived on 2025-07-20. You can view files and clone it, but cannot push or open issues or pull requests.
|
{ pkgs ? import <nixpkgs> { } }:
|
|
|
|
with pkgs;
|
|
|
|
mkShell rec {
|
|
packages = [
|
|
cargo-make
|
|
glib # Used for the `gio` binary to trash files.
|
|
typst
|
|
watchexec
|
|
];
|
|
}
|