mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-08 06:30:18 +02:00
22 lines
413 B
Nix
22 lines
413 B
Nix
{ 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;
|
|
};
|
|
};
|
|
}
|