home: add discord

This commit is contained in:
Bruno BELANYI 2022-01-09 22:19:07 +01:00
parent f386149550
commit 607872753d
2 changed files with 24 additions and 0 deletions

View File

@ -5,6 +5,7 @@
./bluetooth
./comma
./direnv
./discord
./documentation
./feh
./firefox

23
home/discord/default.nix Normal file
View File

@ -0,0 +1,23 @@
{ config, lib, pkgs, ... }:
let
cfg = config.my.home.discord;
jsonFormat = pkgs.formats.json { };
in
{
options.my.home.discord = with lib; {
enable = mkEnableOption "discord configuration";
};
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [
discord
];
xdg.configFile."discord/settings.json".source =
jsonFormat.generate "discord.json" {
# Do not keep me from using the app just to force an update
SKIP_HOST_UPDATE = true;
};
};
}