home: add discord
This commit is contained in:
parent
f386149550
commit
607872753d
|
@ -5,6 +5,7 @@
|
||||||
./bluetooth
|
./bluetooth
|
||||||
./comma
|
./comma
|
||||||
./direnv
|
./direnv
|
||||||
|
./discord
|
||||||
./documentation
|
./documentation
|
||||||
./feh
|
./feh
|
||||||
./firefox
|
./firefox
|
||||||
|
|
23
home/discord/default.nix
Normal file
23
home/discord/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue