From 777ccd846c52c77fb954bc6195770bce43a8414c Mon Sep 17 00:00:00 2001 From: Yorick van Pelt Date: Wed, 6 Jul 2022 09:29:21 +0200 Subject: [PATCH] flake: use overlays.default --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index b893753..a640314 100644 --- a/flake.nix +++ b/flake.nix @@ -16,7 +16,7 @@ }; outputs = inputs@{ nixpkgs, home-manager, nixpkgs-mozilla, emacs-overlay , nixpkgs-wayland, nixpkgs-stable, nixos-hardware, agenix, self, ... }: { - overlay = nixpkgs.lib.composeManyExtensions [ + overlays.default = nixpkgs.lib.composeManyExtensions [ nixpkgs-wayland.overlay #nixpkgs-mozilla.overlay emacs-overlay.overlay @@ -41,7 +41,7 @@ android_sdk.accept_license = true; }; system = "x86_64-linux"; - overlays = [ self.overlay ]; + overlays = builtins.attrValues self.overlays; }; nixosConfigurations = self.legacyPackages.x86_64-linux.yorick.machine; homeConfigurations.x86_64-linux =