From f440336d5b3b2a2e7f478acf4ee41bd191bef287 Mon Sep 17 00:00:00 2001 From: Armel van Ravels Date: Sat, 20 Jun 2026 22:21:51 +0200 Subject: [PATCH] Add VLC --- systems/gandalf/default.nix | 1 + systems/modules/vlc.nix | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 systems/modules/vlc.nix diff --git a/systems/gandalf/default.nix b/systems/gandalf/default.nix index c451bfd..6d93606 100644 --- a/systems/gandalf/default.nix +++ b/systems/gandalf/default.nix @@ -25,6 +25,7 @@ ../modules/bambu-studio-flatpak.nix ../modules/arduino-ide.nix ../modules/bitwarden.nix + ../modules/vlc.nix ./mtp-fix.nix ]; diff --git a/systems/modules/vlc.nix b/systems/modules/vlc.nix new file mode 100644 index 0000000..b1c182b --- /dev/null +++ b/systems/modules/vlc.nix @@ -0,0 +1,7 @@ +{ pkgs, ... }: + +{ + environment.systemPackages = with pkgs; [ + vlc + ]; +}