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 + ]; + }; +}