9 lines
148 B
Nix
9 lines
148 B
Nix
{ config, lib, pkgs, ...}:
|
|
{
|
|
imports = [ ./cli-multimedia.nix ];
|
|
environment.systemPackages = with pkgs; [
|
|
mpv
|
|
gimp-with-plugins
|
|
];
|
|
}
|