11 lines
193 B
Nix
11 lines
193 B
Nix
{...}: {
|
|
flake.nixosModules.defiantPackages = {pkgs, ...}: {
|
|
environment.systemPackages = with pkgs; [
|
|
ffsubsync
|
|
sox
|
|
yt-dlp
|
|
ffmpeg
|
|
imagemagick
|
|
];
|
|
};
|
|
}
|