16 lines
247 B
Nix
16 lines
247 B
Nix
{ config, pkgs, inputs, lib, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
castget
|
|
feh
|
|
ffmpeg
|
|
nicotine-plus
|
|
qbittorrent
|
|
vlc
|
|
yt-dlp
|
|
zathura
|
|
];
|
|
|
|
xdg.configFile."castget/castget.conf".source = ./castget/castget.conf;
|
|
}
|