Guest User

Untitled

a guest
May 19th, 2020
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. nixpkgs.config.overlays = [(self: super: {
  2. nixos-unstable = import unstable-tarball {
  3. # pass the nixpkgs config to the unstable alias
  4. # to ensure `allowUnfree = true;` is propagated:
  5. config = config.nixpkgs.config;
  6. };
  7.  
  8. plexRaw = super.plexRaw.overrideAttrs (old: rec {
  9. version = "1.19.3.2764-ef515a800";
  10. src = self.fetchurl {
  11. url = "https://downloads.plex.tv/plex-media-server-new/${version}/redhat/plexmediaserver-${version}.x86_64.rpm";
  12. sha256 = "10x4cf1c826vj9gqr7r6k70rrjifmi36sd7imfi7pdw5swizjzqv";
  13. };
  14. });
  15. })];
Add Comment
Please, Sign In to add comment