From ef9bc9f85168aaded18cdff0d69446c91c3b6700 Mon Sep 17 00:00:00 2001 From: punkfairie Date: Mon, 10 Mar 2025 20:02:27 -0700 Subject: [PATCH] feat: Install VLC --- modules/home/programs/gui/default.nix | 1 + modules/home/programs/gui/vlc/default.nix | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 modules/home/programs/gui/vlc/default.nix diff --git a/modules/home/programs/gui/default.nix b/modules/home/programs/gui/default.nix index 0e90a62..e5fca8d 100644 --- a/modules/home/programs/gui/default.nix +++ b/modules/home/programs/gui/default.nix @@ -19,6 +19,7 @@ in { pidgin = enabled; thunderbird = enabled; phpstorm = enabled; + vlc = enabled; wezterm = enabled; zathura = enabled; }; diff --git a/modules/home/programs/gui/vlc/default.nix b/modules/home/programs/gui/vlc/default.nix new file mode 100644 index 0000000..bdf8d5f --- /dev/null +++ b/modules/home/programs/gui/vlc/default.nix @@ -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 + ]; + }; +}