some fixes
This commit is contained in:
parent
bf35832817
commit
1adcfe0a12
7 changed files with 240 additions and 24 deletions
24
modules/leisure.nix
Normal file
24
modules/leisure.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue