nixos/homeConfig/modules/fun/default.nix
2024-01-28 05:48:14 -05:00

23 lines
440 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
];
};
}