nixfiles/config/profiles/base/packages.nix
2021-09-05 18:41:18 +01:00

11 lines
219 B
Nix

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