12 lines
129 B
Nix
12 lines
129 B
Nix
|
{ pkgs, ... }: {
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
jq
|
||
|
ripgrep
|
||
|
fd
|
||
|
pv
|
||
|
file
|
||
|
tmux
|
||
|
socat
|
||
|
];
|
||
|
}
|