nichts/nyx/modules/core/profiles/workstation.nix
2024-04-09 23:11:33 +02:00

16 lines
321 B
Nix

{
config,
lib,
...
}: let
inherit (lib) mkIf;
in {
config.modules.system.programs = mkIf config.modules.profiles.workstation.enable {
webcord.enable = true;
element.enable = true;
libreoffice.enable = true;
firefox.enable = true;
thunderbird.enable = true;
zathura.enable = true;
};
}