27 lines
423 B
Nix
27 lines
423 B
Nix
{
|
|
options,
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
with lib;
|
|
with lib.frajul;
|
|
let
|
|
cfg = config.apps.discord;
|
|
in
|
|
{
|
|
options.apps.discord = with types; {
|
|
enable = mkBoolOpt false "Enable discord";
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
environment.systemPackages = [
|
|
(pkgs.discord.override { withOpenASAR = true; })
|
|
pkgs.xwaylandvideobridge
|
|
];
|
|
|
|
home.persist.directories = [ ".config/discord" ];
|
|
};
|
|
}
|