2025-01-11 01:00:13 +04:00
|
|
|
{ outputs, options, config, lib, pkgs, ... }:
|
2024-08-01 16:24:09 +04:00
|
|
|
let
|
2023-10-08 14:32:12 +04:00
|
|
|
cfg = config.modules.desktop.chat.discord;
|
2024-08-05 19:13:58 +04:00
|
|
|
hyprland = config.modules.desktop.hyprland;
|
2023-10-08 14:32:12 +04:00
|
|
|
in {
|
2025-01-11 01:00:13 +04:00
|
|
|
options.modules.desktop.chat.discord = { enable = lib.mkEnableOption false; };
|
2023-10-08 14:32:12 +04:00
|
|
|
|
2024-08-01 16:24:09 +04:00
|
|
|
config = lib.mkIf cfg.enable {
|
2025-01-11 01:00:13 +04:00
|
|
|
users.users.sako.packages = [ pkgs.vesktop ];
|
2024-08-05 19:13:58 +04:00
|
|
|
|
2023-10-08 14:32:12 +04:00
|
|
|
};
|
|
|
|
}
|