Files
athenix/sw/headless/programs.nix
UGA Innovation Factory 6ab5f20946 Rename project to 'Athenix'
2025-12-18 12:07:25 -05:00

27 lines
361 B
Nix

{
config,
lib,
pkgs,
inputs,
...
}:
with lib;
let
cfg = config.athenix.sw;
basePackages = with pkgs; [
tmux
man
];
in
{
environment.systemPackages = subtractLists cfg.excludePackages (basePackages ++ cfg.extraPackages);
programs.mtr.enable = true;
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
}