nix-configs/modules/desktop/social.nix

18 lines
377 B
Nix
Raw Normal View History

2023-02-13 11:54:21 +00:00
{ 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
2023-05-25 07:03:43 +00:00
schildichat-desktop
2023-09-08 23:10:22 +00:00
mumble
2023-02-13 11:54:21 +00:00
];
};
};
}