mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-23 16:29:42 -04:00
26 lines
507 B
Nix
26 lines
507 B
Nix
{ pkgs, lib, config, ... }:
|
|
|
|
with lib;
|
|
let
|
|
cfg = config.modules.user.gui.fun;
|
|
|
|
in
|
|
{ options.modules.user.gui.fun = { enable = mkEnableOption "Enable entertainment apps"; };
|
|
config = mkIf cfg.enable {
|
|
#programs.obs-studio = {
|
|
# enable = true;
|
|
# plugins = with pkgs.obs-studio-plugins; [
|
|
# wlrobs
|
|
# obs-pipewire-audio-capture
|
|
# input-overlay
|
|
# ];
|
|
#};
|
|
|
|
home.packages = with pkgs; [
|
|
ytmdesktop
|
|
#discordo
|
|
#webcord
|
|
discord
|
|
];
|
|
};
|
|
}
|