mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-09 20:33:15 -06:00
14 lines
292 B
Nix
14 lines
292 B
Nix
{ pkgs, flake, ... }:
|
|
{
|
|
environment.systemPackages =
|
|
[ (flake.pkg "utils") ]
|
|
++ (with pkgs; [
|
|
zk
|
|
quarto
|
|
cachix
|
|
graphviz
|
|
# nix-du # failing to build suddenly?
|
|
# https://github.com/symphorien/nix-du/issues/23
|
|
# maybe llvm related?
|
|
]);
|
|
}
|