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