diff --git a/modules/home/profiles.nix b/modules/home/profiles.nix index 0134b65..327b12d 100644 --- a/modules/home/profiles.nix +++ b/modules/home/profiles.nix @@ -65,6 +65,7 @@ in { superfile = enabled; tea = enabled; thunderbird = enabled; + vlc = enabled; }; services = { diff --git a/modules/home/programs/default.nix b/modules/home/programs/default.nix index b745560..2d108c8 100644 --- a/modules/home/programs/default.nix +++ b/modules/home/programs/default.nix @@ -45,6 +45,7 @@ ./tea.nix ./thunderbird.nix ./tmux.nix + ./vlc.nix ./waybar.nix ./wget.nix ./zoxide.nix diff --git a/snowflake/modules/home/programs/gui/vlc/default.nix b/modules/home/programs/vlc.nix similarity index 78% rename from snowflake/modules/home/programs/gui/vlc/default.nix rename to modules/home/programs/vlc.nix index bdf8d5f..d366335 100644 --- a/snowflake/modules/home/programs/gui/vlc/default.nix +++ b/modules/home/programs/vlc.nix @@ -8,7 +8,7 @@ in { options.marleyos.programs.vlc.enable = lib.mkEnableOption "vlc"; - config = lib.mkIf cfg.enable { + config = lib.mkIf (cfg.enable && pkgs.stdenv.isLinux) { home.packages = with pkgs; [ vlc ];