nix-configs/modules/desktop/social.nix
2023-02-13 12:54:21 +01:00

16 lines
370 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, ... }: {
programs.nheko.enable = true;
home.packages = with pkgs; [
evolutionWithPlugins
];
};
};
}