1
0
mirror of https://github.com/nix-community/home-manager synced 2024-05-31 20:13:34 +02:00

emacs: use overrideScope instead of overrideScope'

This commit is contained in:
zendo 2024-02-11 07:23:06 +08:00 committed by GitHub
parent d1d6ca9b65
commit bfd0ae29a8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,7 +9,7 @@ let
# Copied from all-packages.nix, with modifications to support
# overrides.
emacsPackages = let epkgs = pkgs.emacsPackagesFor cfg.package;
in epkgs.overrideScope' cfg.overrides;
in epkgs.overrideScope cfg.overrides;
emacsWithPackages = emacsPackages.emacsWithPackages;