15 lines
160 B
Nix
15 lines
160 B
Nix
|
{ pkgs, lib, config, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
./obs
|
||
|
];
|
||
|
|
||
|
home.packages = with pkgs; [
|
||
|
yt-dlp
|
||
|
spotdl
|
||
|
playerctl
|
||
|
ffmpeg
|
||
|
pulsemixer
|
||
|
];
|
||
|
}
|