1{pkgs, ...}: {
2 # Miscellaneous packages that do not have an option.
3 # It is recommended to use packages.<package>.enable when possible.
4
5 # To search for a specific package, run this command.
6 # $ nix search wget
7 environment.systemPackages = with pkgs; [
8 wget
9 curl
10
11 file
12 ripgrep
13 ack
14
15 deno
16
17 nvd
18 just
19
20 attic
21 git-crypt
22 ];
23
24 programs.mtr.enable = true;
25}