summaryrefslogtreecommitdiff
path: root/modules/root/software/system.nix
blob: 4c8159673c9a66409e7cc2af27351f4cd8b91dfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ pkgs, ... }: {
	environment.systemPackages = with pkgs; [
		age  # Secrets
		cryptsetup
		dash  # TODO should be default /bin/sh
		exfat
		git  # Needed for home-manager
		ntfs3g
		python3
		sops  # Secrets
	];

	services.gpm.enable = true;
}