From 0bd0758a9f3b282239b31be1c1c9f42ea0ff5147 Mon Sep 17 00:00:00 2001 From: Leander Scherer Date: Fri, 13 Mar 2026 11:08:54 +0100 Subject: feat(modules): add vlc module to home manager --- modules/programs/vlc.nix | 12 ++++++++++++ modules/users/schererleander/hm-linux.nix | 1 + 2 files changed, 13 insertions(+) create mode 100644 modules/programs/vlc.nix diff --git a/modules/programs/vlc.nix b/modules/programs/vlc.nix new file mode 100644 index 0000000..77ffb84 --- /dev/null +++ b/modules/programs/vlc.nix @@ -0,0 +1,12 @@ +{ + flake.modules.homeManager.vlc = + { + pkgs, + ... + }: + { + home.packages = with pkgs; [ + vlc + ]; + }; +} diff --git a/modules/users/schererleander/hm-linux.nix b/modules/users/schererleander/hm-linux.nix index cac5579..00ae901 100644 --- a/modules/users/schererleander/hm-linux.nix +++ b/modules/users/schererleander/hm-linux.nix @@ -9,6 +9,7 @@ inputs.self.modules.homeManager.spicetify inputs.self.modules.homeManager.jellyfin-mpv-shim inputs.self.modules.homeManager.nextcloud-client + inputs.self.modules.homeManager.vlc ]; }; } -- cgit v1.3.1