24 lines
431 B
Nix
24 lines
431 B
Nix
{ 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
|
|
];
|
|
};
|
|
}
|