nix-config/hosts/workstation/features/software/discord.nix

19 lines
356 B
Nix

{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
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;
};
};
}