diff options
| author | Leander Scherer <leander@schererleander.de> | 2026-03-13 11:08:54 +0100 |
|---|---|---|
| committer | Leander Scherer <leander@schererleander.de> | 2026-03-13 11:08:54 +0100 |
| commit | 0bd0758a9f3b282239b31be1c1c9f42ea0ff5147 (patch) | |
| tree | f7119c0817f08e09530283198ae7a417a9e71954 | |
| parent | 4e63d85bd134952e5004c34647000c1d1f07ca4e (diff) | |
feat(modules): add vlc module to home manager
| -rw-r--r-- | modules/programs/vlc.nix | 12 | ||||
| -rw-r--r-- | modules/users/schererleander/hm-linux.nix | 1 |
2 files changed, 13 insertions, 0 deletions
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 ]; }; } |
