Nix configurations for my homelab
0

Configure Feed

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

Remove overlays for electron 38 and electron 39

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