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

37 lines
613 B
Nix

{
config,
lib,
pkgs,
inputs,
...
}:
with lib;
let
cfg = config.athenix.sw;
basePackages = with pkgs; [
tmux
man
(chromium.override {
commandLineArgs = [ "--enable-features=TouchpadOverscrollHistoryNavigation" ];
})
lm_sensors
zoom-us
teams-for-linux
wpsoffice
];
in
{
environment.systemPackages = subtractLists cfg.excludePackages (basePackages ++ cfg.extraPackages);
programs.mtr.enable = true;
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
programs.firefox.enable = true;
programs.virt-manager.enable = true;
}