nix-configs/modules/desktop/social.nix

25 lines
457 B
Nix
Raw Normal View History

{
config,
lib,
pkgs,
...
}: let
cfg = config.jade.desktop.social;
in
with lib; {
options.jade.desktop.social = {
enable = mkEnableOption "Enable social apps";
2023-02-13 11:54:21 +00:00
};
config = mkIf cfg.enable {
home-manager.users.jade = {pkgs, ...}: {
home.packages = with pkgs; [
evolutionWithPlugins
2023-12-10 22:21:09 +00:00
cinny-desktop
2023-11-29 19:40:13 +00:00
signal-desktop
mumble
2024-01-22 18:40:10 +00:00
element-desktop
];
};
};
}