nix-configs/modules/desktop/social.nix
2024-02-18 01:24:57 +01:00

23 lines
433 B
Nix

{
config,
lib,
pkgs,
...
}: let
cfg = config.jade.desktop.social;
in
with lib; {
options.jade.desktop.social = {
enable = mkEnableOption "Enable social apps";
};
config = mkIf cfg.enable {
home-manager.users.jade = {pkgs, ...}: {
home.packages = with pkgs; [
evolutionWithPlugins
signal-desktop
mumble
element-desktop
];
};
};
}