Overlays should be a list

This commit is contained in:
niten 2022-08-22 13:57:16 -07:00
parent d88883586a
commit 6d79e8c936
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@
pkgs.mkShell { buildInputs = with pkgs; [ update-deps ]; };
}) // {
nixosModules.default = {
nixpkgs.overlays = self.overlays.default;
nixpkgs.overlays = [ self.overlays.default ];
modules = [ (import ./module.nix) ];
};
overlays.default = final: prev: {