nixos/modules/leisure.nix
2026-07-06 07:02:34 -03:00

28 lines
598 B
Nix

{ den, inputs, pkgs-unstable, ... }: {
den.aspects.leisure.nixos = { ... }: {
imports = [ inputs.nix-flatpak.nixosModules.nix-flatpak ];
services.flatpak = {
enable = true;
remotes = [{
name = "flathub";
location = "https://flathub.org/repo/flathub.flatpakrepo";
}];
packages = [
{ appId = "com.stremio.Stremio"; origin = "flathub"; }
];
};
environment.systemPackages = with pkgs-unstable; [
# Torrenting
qbittorrent
# Media playback
mpv
yt-dlp
# Social
discord
];
};
}