mirror of
https://codeberg.org/muon/home.git
synced 2026-03-08 03:25:16 +00:00
34 lines
649 B
Nix
34 lines
649 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
sources,
|
|
...
|
|
}: let
|
|
vesktop-nogain = pkgs.vesktop.overrideAttrs (previousAttrs: {
|
|
patches = previousAttrs.patches ++ [sources."vesktop.micfix".src];
|
|
});
|
|
in {
|
|
options.mods.social.enable =
|
|
lib.mkEnableOption "enables social media clients";
|
|
|
|
config = lib.mkIf config.mods.social.enable {
|
|
home.packages = with pkgs; [
|
|
# Communication
|
|
# kotatogram-desktop
|
|
signal-desktop
|
|
abaddon
|
|
vesktop-nogain
|
|
# (callPackage ./packages/librediscord.nix {})
|
|
jami
|
|
|
|
# Video
|
|
freetube
|
|
|
|
# Security
|
|
gcr
|
|
];
|
|
|
|
services.gnome-keyring.enable = true;
|
|
};
|
|
}
|