mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
14 lines
216 B
Nix
14 lines
216 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;
|
|
};
|
|
}
|