mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 08:07:45 +00:00
16 lines
336 B
Nix
16 lines
336 B
Nix
{ pkgs, lib, config, ... }: {
|
|
options.mods.social.enable =
|
|
lib.mkEnableOption "enables social media clients";
|
|
|
|
config = lib.mkIf config.mods.social.enable {
|
|
home.packages = with pkgs; lib.mkAfter [
|
|
# Communication
|
|
kotatogram-desktop
|
|
signal-desktop
|
|
vesktop
|
|
|
|
# Video
|
|
freetube
|
|
];
|
|
};
|
|
}
|