Nix configurations for my homelab
0

Configure Feed

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

Add use binary for electron_39

+6 -1
+6 -1
modules/electron.nix
··· 1 1 { ... }: 2 2 { 3 - nixpkgs.overlays = [ (final: prev: { electron = final.electron-bin; }) ]; 3 + nixpkgs.overlays = [ 4 + (final: prev: { 5 + electron = final.electron-bin; 6 + electron_39 = final.electron_39-bin; 7 + }) 8 + ]; 4 9 }