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 ./bluetooth
./comma ./comma
./direnv ./direnv
./discord
./documentation ./documentation
./feh ./feh
./firefox ./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;
};
};
}