workstation client should have the default set of needed software

This commit is contained in:
chloe 2025-07-02 21:21:29 +02:00
parent f1604be829
commit fdee7b7cf3
6 changed files with 75 additions and 20 deletions

View file

@ -0,0 +1,22 @@
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
(discord.override {
withVencord = true;
})
vesktop
];
# screen record support
xdg = {
autostart.enable = true;
icons.enable = true;
portal = {
enable = true;
extraPortals = with pkgs; [
xdg-desktop-portal-wlr
xdg-desktop-portal-gtk
];
wlr.enable = true;
};
};
}