more dotfiles config

This commit is contained in:
chloe 2025-03-22 18:53:16 +01:00
parent 0771ad93ce
commit dcc640bd56
8 changed files with 160 additions and 63 deletions

View file

@ -1,8 +1,21 @@
{config, pkgs, ...}:
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
(discord.override {
withVencord = true;
})
];
# 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;
};
};
}