infrastructure/config/profiles/base/packages.nix
2021-09-03 00:00:16 +01:00

10 lines
206 B
Nix

{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
smartmontools
hddtemp
lm_sensors
gnupg
] ++ (lib.optional config.programs.gnupg.agent.enable pinentry-curses);
}