13 lines
169 B
Nix
13 lines
169 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
firefox
|
|
xdotool
|
|
xorg.xkill
|
|
xorg.xinput
|
|
xclip
|
|
yt-dlp
|
|
ffmpeg
|
|
];
|
|
}
|