mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 08:07:45 +00:00
Add social
This commit is contained in:
parent
9cdce8f2fa
commit
7da8f05b24
8 changed files with 68 additions and 9 deletions
16
modules/home/desktop/social.nix
Normal file
16
modules/home/desktop/social.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{ 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
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue