some fixes

This commit is contained in:
Zoty 2026-06-14 11:24:05 -03:00
parent bf35832817
commit 1adcfe0a12
Signed by: Zoty
SSH key fingerprint: SHA256:WsGEGivgl37t3Mth6uugXMOgMCTR7QolIepNbC+j/tA
7 changed files with 240 additions and 24 deletions

24
modules/leisure.nix Normal file
View file

@ -0,0 +1,24 @@
{ den, inputs, ... }: {
den.aspects.leisure.nixos = { pkgs, ... }:
let
pkgs-unstable = import inputs.nixpkgs-unstable {
system = pkgs.system;
config.allowUnfree = true;
};
in {
environment.systemPackages = with pkgs-unstable; [
# Streaming
stremio-linux-shell
# Torrenting
qbittorrent
# Media playback
mpv
yt-dlp
# Social
discord
];
};
}