Don't use callPackage?

This commit is contained in:
Niten 2021-09-04 10:22:21 -07:00
parent 368254ece7
commit ea3bb0706e
2 changed files with 8 additions and 4 deletions

View File

@ -100,9 +100,13 @@ let
in {
nixpkgs.overlays = [
(pkgs.callPackage ./package-overlay.nix {})
];
nixpkgs = {
allowUnfree = true;
overlays = [
(import ./package-overlay.nix { inherit pkgs; })
];
};
programs = {
bash.enable = true;

View File

@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }: final: prev: {
{ pkgs, ... }: final: prev: {
doom-emacs-config = pkgs.fetchgit {
url = "https://git.fudo.org/niten/doom-emacs.git";