1
0
Fork 0
nix-configuration/modules/apps/social.nix

24 lines
407 B
Nix
Raw Normal View History

2024-11-03 11:06:39 -05:00
{ config, lib, ... }:
let
cfg = config.aux.system.apps.social;
in
{
options = {
2024-08-02 17:55:48 -04:00
aux.system.apps.social.enable = lib.mkEnableOption "Enables chat apps";
};
2024-08-02 17:55:48 -04:00
config = lib.mkIf cfg.enable {
2024-06-25 14:13:15 -04:00
aux.system = {
allowUnfree = true;
ui.flatpak = {
enable = true;
2024-11-03 11:06:39 -05:00
packages = [
"com.discordapp.Discord"
"dev.geopjr.Tuba"
];
2024-06-25 14:13:15 -04:00
};
};
};
}