summaryrefslogtreecommitdiff
path: root/hosts/glados/packages.nix
blob: 706691125522ebd7b01730d9c23cd51d5f581d87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{pkgs, ...}: {
	environment.systemPackages = with pkgs; [
		git
		gnupg1
		neofetch
		nixos-option
		pinentry-curses
		python310
		vim
	];

	programs = {
		gnupg = {
			agent = {
				enable = true;
				pinentryFlavor = "curses";
			};
		};
	};
}