NixOS-95/Modules/Applications/GUI-Apps/Desktop-Apps/vesktop.nix
2025-07-24 15:19:29 +02:00

17 lines
279 B
Nix

{
config,
pkgs,
lib,
...
}:
with lib; let
cfg = config.vesktop;
in {
options.vesktop.enable = mkEnableOption "Enable Vesktop, the Custom Discord client, with extensions";
config = mkIf cfg.enable {
home.packages = with pkgs; [
pkgs.vesktop
];
};
}