summaryrefslogtreecommitdiff
path: root/archetypes/collections/utilities.nix
blob: 85763a44cbc606d08fedc18da4ddfb819869212d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ pkgs, ... }: {
	environment.systemPackages = with pkgs; [
		crazydiskinfo
		dash  # TODO should be default /bin/sh
		entr
		fastfetch
		ffmpeg
		htop
		jq
		light
		lm_sensors
		mediainfo
		neovim
		nmap
		openssl
		p7zip
		powertop
		pv
		rsync
		screen
		smartmontools
		sslscan
		stress
		testdisk
		tmux
		uhubctl
		vimv-rs
		wget
		wireguard-tools
		xxHash
		yt-dlp
	];

	services.gpm.enable = true;
}