nixos/modules/leisure.nix
2026-06-27 07:44:09 -03:00

18 lines
300 B
Nix

{ den, pkgs-unstable, ... }: {
den.aspects.leisure.nixos = { ... }: {
environment.systemPackages = with pkgs-unstable; [
# Streaming
stremio-linux-shell
# Torrenting
qbittorrent
# Media playback
mpv
yt-dlp
# Social
discord
];
};
}