aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorLeander Scherer <leander@schererleander.de>2026-03-13 11:08:54 +0100
committerLeander Scherer <leander@schererleander.de>2026-03-13 11:08:54 +0100
commit0bd0758a9f3b282239b31be1c1c9f42ea0ff5147 (patch)
treef7119c0817f08e09530283198ae7a417a9e71954 /modules
parent4e63d85bd134952e5004c34647000c1d1f07ca4e (diff)
feat(modules): add vlc module to home manager
Diffstat (limited to 'modules')
-rw-r--r--modules/programs/vlc.nix12
-rw-r--r--modules/users/schererleander/hm-linux.nix1
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
];
};
}