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 + ]; +}