feat: Install VLC

This commit is contained in:
punkfairie 2025-03-10 20:02:27 -07:00
parent f866b22802
commit ef9bc9f851
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6
2 changed files with 17 additions and 0 deletions

View file

@ -19,6 +19,7 @@ in {
pidgin = enabled;
thunderbird = enabled;
phpstorm = enabled;
vlc = enabled;
wezterm = enabled;
zathura = enabled;
};

View file

@ -0,0 +1,16 @@
{
lib,
config,
pkgs,
...
}: let
cfg = config.marleyos.programs.vlc;
in {
options.marleyos.programs.vlc.enable = lib.mkEnableOption "vlc";
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [
vlc
];
};
}