alpha
Login
or
Join now
yemou.pink
/
nix-configs
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Nix configurations for my homelab
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
Add use binary for electron_39
author
yemou
date
4 months ago
(Jan 29, 2026, 3:58 PM -0500)
commit
1a1bc889
1a1bc88902c93d9268735d00056eb7f7a8db82bb
parent
13675979
13675979e73aff7dc9a3135723d635049eb28ed1
+6
-1
1 changed file
Expand all
Collapse all
Unified
Split
modules
electron.nix
+6
-1
modules/electron.nix
Reviewed
···
1
1
{ ... }:
2
2
{
3
3
-
nixpkgs.overlays = [ (final: prev: { electron = final.electron-bin; }) ];
3
3
+
nixpkgs.overlays = [
4
4
+
(final: prev: {
5
5
+
electron = final.electron-bin;
6
6
+
electron_39 = final.electron_39-bin;
7
7
+
})
8
8
+
];
4
9
}