Re-enable dolphin-emu-primehack now that binary build is fixed in 25.11. Re-enable fluffychat as security issues have been resolved in nixpkgs 25.11. Both packages verified to build and function correctly.
26 lines
594 B
Nix
26 lines
594 B
Nix
{ config, lib, pkgs, globalInputs, system, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.home.roles.communication;
|
|
in
|
|
{
|
|
options.home.roles.communication = {
|
|
enable = mkEnableOption "Enable communication and messaging applications";
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
home.packages = [
|
|
# Communication apps
|
|
pkgs.element-desktop
|
|
# Re-enabled in 25.11 after security issues were resolved
|
|
pkgs.fluffychat
|
|
pkgs.nextcloud-talk-desktop
|
|
|
|
# For logging back into google chat
|
|
globalInputs.google-cookie-retrieval.packages.${system}.default
|
|
];
|
|
};
|
|
}
|