mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-06 07:36:23 +01:00
24 lines
437 B
Nix
24 lines
437 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
|
|
schildichat-desktop
|
|
signal-desktop
|
|
mumble
|
|
];
|
|
};
|
|
};
|
|
}
|