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