nixos/modules/desktop/chat/discord/default.nix
Sakooooo 14fe6d9470
All checks were successful
ci/woodpecker/cron/flake-update Pipeline was successful
remove official discord client
2025-01-11 01:00:13 +04:00

13 lines
319 B
Nix

{ outputs, options, config, lib, pkgs, ... }:
let
cfg = config.modules.desktop.chat.discord;
hyprland = config.modules.desktop.hyprland;
in {
options.modules.desktop.chat.discord = { enable = lib.mkEnableOption false; };
config = lib.mkIf cfg.enable {
users.users.sako.packages = [ pkgs.vesktop ];
};
}