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
use electron-bin instead of electron
author
yemou
date
7 months ago
(Nov 18, 2025, 1:06 AM -0500)
commit
2c82b938
2c82b9387a7704ea6648b8582ccde93bc44b2899
parent
bd2ada03
bd2ada0302d2c6f6d7ebf3973d34ad06cd78929c
+5
-8
4 changed files
Expand all
Collapse all
Unified
Split
lutea
config.nix
modules
electron.nix
email.nix
games.nix
+1
lutea/config.nix
Reviewed
···
9
9
../modules/cloud-storage.nix
10
10
../modules/creation.nix
11
11
../modules/editor.nix
12
12
+
../modules/electron.nix
12
13
../modules/email.nix
13
14
../modules/flatpak.nix
14
15
../modules/fonts.nix
+4
modules/electron.nix
Reviewed
···
1
1
+
{ ... }:
2
2
+
{
3
3
+
nixpkgs.overlays = [ (final: prev: { electron = final.electron-bin; }) ];
4
4
+
}
-6
modules/email.nix
Reviewed
···
1
1
{ pkgs, ... }:
2
2
{
3
3
-
nixpkgs.overlays = [
4
4
-
(final: prev: {
5
5
-
sieve-editor-gui = prev.sieve-editor-gui.override { electron = final.electron-bin; };
6
6
-
})
7
7
-
];
8
8
-
9
3
users.users.mou.packages = with pkgs; [
10
4
check-sieve
11
5
sieve-editor-gui
-2
modules/games.nix
Reviewed
···
41
41
};
42
42
}
43
43
);
44
44
-
45
45
-
r2modman = prev.r2modman.override { electron = prev.electron-bin; };
46
44
}
47
45
)
48
46
];