nixfiles/home/profiles/graphical/discord.nix
2024-04-06 11:21:36 -07:00

10 lines
210 B
Nix

{ pkgs, lib, ... }: let
inherit (lib.generators) toJSON;
in {
home.packages = with pkgs; [
discord
];
xdg.configFile."discord/settings.json".text = toJSON {} {
"SKIP_HOST_UPDATE" = true;
};
}