nix-conf/modules/nixos/packages/default.nix

15 lines
201 B
Nix
Raw Normal View History

2024-04-11 04:48:03 +00:00
{pkgs, ...}: {
2024-04-22 05:58:04 +00:00
environment.systemPackages =
(with pkgs; [
vim
wget
git
nh
nix-output-monitor
nvd
])
++ (with pkgs.masterPkgs; [
ollama
]);
2024-04-11 04:48:03 +00:00
}