28 lines
598 B
Nix
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
|
|
];
|
|
};
|
|
}
|