From 52803970718335be3707c184fe0cc993c8694ea1 Mon Sep 17 00:00:00 2001 From: Christoph Heiss Date: Sun, 25 Aug 2024 23:04:51 +0200 Subject: [PATCH] flake: add `overlays` output Signed-off-by: Christoph Heiss --- flake.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/flake.nix b/flake.nix index 932925f..1e9066c 100644 --- a/flake.nix +++ b/flake.nix @@ -213,5 +213,7 @@ nixosConfigurations = builtins.mapAttrs mkSystem machines; nixosModules = import ./modules; + + overlays.default = final: prev: map (f: f final prev) overlays; }); }