Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ADD: comments

+3
+3
services.nix
··· 11 11 ]; 12 12 overlays = [ 13 13 (final: prev: { 14 + # Override the version of Plex installed to be the latest 14 15 plexRaw = prev.plexRaw.overrideAttrs rec { 15 16 version = "1.42.1.10060-4e8b05daf"; 16 17 src = final.fetchurl { ··· 18 19 sha256 = "OoItvG0IpgUKlZ0JmzDc2WqMtyZrlNCF7MCnUKqBl/Q="; 19 20 }; 20 21 }; 22 + # Override the json object that contains verions and hashes for Immich 21 23 immich = prev.immich.override { sourcesJSON = ./overrides/immich-sources.json; }; 24 + # Fix errors wit numpy version failing to resolve in the immich ML package 22 25 immich-machine-learning = prev.immich-machine-learning.overrideAttrs 23 26 (finalAttrs: prevAttrs: { 24 27 pythonRelaxDeps = prevAttrs.pythonRelaxDeps ++ [ "numpy" ];