37 lines
611 B
Nix
37 lines
611 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.ugaif.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;
|
|
}
|