mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
10 lines
210 B
Nix
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;
|
|
};
|
|
}
|