mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 10:13:14 -06:00
20 lines
270 B
Nix
20 lines
270 B
Nix
{ pkgs, flake, ... }:
|
|
{
|
|
environment.systemPackages =
|
|
[
|
|
(flake.pkg "utils")
|
|
(flake.pkg "ghostty")
|
|
]
|
|
|
|
++ (with pkgs; [
|
|
|
|
distrobox
|
|
zk
|
|
quarto
|
|
cachix
|
|
graphviz
|
|
typst
|
|
charm-freeze
|
|
attic-client
|
|
]);
|
|
}
|