summaryrefslogtreecommitdiff
path: root/modules/root/software/utilities.nix
blob: dabf16362519588d145cf78267cc0cce3dd916ea (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
{ pkgs, ... }: {
	environment.systemPackages = with pkgs; [
		entr
		fastfetch
		ffmpeg
		htop
		jq
		light
		lm_sensors
		mediainfo
		neovim
		nmap
		openssl
		p7zip
		powertop
		pv
		rsync
		screen
		smartmontools
		sslscan
		stress
		testdisk
		tmux
		uhubctl
		wget
		wireguard-tools
		xxHash
		yt-dlp
		(callPackage ./derivations/lowbat {})
		(callPackage ./derivations/pavolctld {})
	];
}