This commit is contained in:
ItsDrike 2024-06-21 13:58:10 +02:00
parent ad463e5f3f
commit 4cf6d51b79
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
4 changed files with 21 additions and 0 deletions

View file

@ -4,5 +4,6 @@ _: {
./stremio.nix
./nomacs.nix
./qbittorrent.nix
./mpv.nix
];
}

17
home/packages/gui/mpv.nix Normal file
View file

@ -0,0 +1,17 @@
{
lib,
pkgs,
osConfig,
...
}: let
inherit (lib) mkIf;
cfg = osConfig.myOptions.home-manager.programs.applications.mpv;
in {
config = mkIf cfg.enable {
home.packages = with pkgs; [
mpv
];
};
}