This repository has been archived on 2025-08-26. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
t14_legacy_config/home/apps/multimedia.nix
Fabian Montero 2aa388c2d4 checkpoint
2024-04-06 12:10:20 -06:00

19 lines
337 B
Nix

{ config, lib, pkgs, ... } :
with lib;
let
cfg = config.local.apps.multimedia;
in
{
options.local.apps.multimedia.enable = mkEnableOption "Video and audio tools";
config = mkIf cfg.enable {
home.packages = with pkgs; [
deluge
lapce
mpv
obs-studio
pavucontrol
spotify
vlc
];
};
}