oizys/hosts/othalan/pkgs.nix

21 lines
270 B
Nix
Raw Permalink Normal View History

2024-08-16 14:20:54 -05:00
{ pkgs, flake, ... }:
2024-07-03 10:52:28 -05:00
{
2024-08-16 14:20:54 -05:00
environment.systemPackages =
2024-11-03 09:11:29 -06:00
[
(flake.pkg "utils")
(flake.pkg "ghostty")
]
2024-08-16 14:20:54 -05:00
++ (with pkgs; [
2024-11-03 09:11:29 -06:00
2024-10-19 18:17:00 -05:00
distrobox
2024-08-16 14:20:54 -05:00
zk
quarto
cachix
graphviz
2024-08-27 12:30:44 -05:00
typst
2024-09-03 15:01:16 -05:00
charm-freeze
2024-10-29 16:59:08 -05:00
attic-client
2024-08-16 14:20:54 -05:00
]);
2024-07-03 10:52:28 -05:00
}