Add multimedia fragment

This commit is contained in:
NullBite 2023-12-28 03:07:55 -05:00
parent 698d9007bb
commit 2c988ab77a
Signed by: nullbite
GPG Key ID: 6C4D545385D4925A
3 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,8 @@
{ config, lib, pkgs, ...}:
{
environment.systemPackages = with pkgs; [
yt-dlp
imagemagick
ffmpeg
];
}

View File

@ -1,5 +1,6 @@
{ config, lib, pkgs, ...}: { config, lib, pkgs, ...}:
{ {
imports = [ ./cli-multimedia.nix ];
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
mpv mpv
gimp-with-plugins gimp-with-plugins

View File

@ -4,6 +4,7 @@
imports = [ imports = [
./base.nix ./base.nix
../fragments/sound.nix ../fragments/sound.nix
../fragments/multimedia.nix
]; ];
# Enable the X11 windowing system. # Enable the X11 windowing system.