mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 08:39:42 -04:00
22 lines
405 B
Nix
22 lines
405 B
Nix
{ pkgs, lib, config, ... }:
|
|
|
|
with lib;
|
|
let
|
|
cfg = config.modules.fun;
|
|
|
|
in
|
|
{ options.modules.fun = { enable = mkEnableOption "fun"; };
|
|
config = mkIf cfg.enable {
|
|
programs.obs-studio = {
|
|
enable = true;
|
|
plugins = with pkgs.obs-studio-plugins; [
|
|
wlrobs
|
|
obs-pipewire-audio-capture
|
|
];
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
spotify discord steam
|
|
];
|
|
};
|
|
}
|