nixos/homeConfig/modules/fun/default.nix
2023-06-30 18:28:37 -04:00

23 lines
442 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
input-overlay
];
};
home.packages = with pkgs; [
spotify webcord showmethekey cmatrix
];
};
}