From b3276d32077b7883e4cede784b6598fc3ca403c0 Mon Sep 17 00:00:00 2001 From: Fernando Ayats Date: Tue, 17 May 2022 15:10:00 +0200 Subject: [PATCH] nix: add overlay back --- flake.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 506b89bb..96b2375f 100644 --- a/flake.nix +++ b/flake.nix @@ -31,8 +31,15 @@ inherit (self.packages.${system}) wlroots; }; }); + formatter = genSystems (system: pkgsFor.${system}.alejandra); - # TODO Provide a nixos module for easy installation + + # TODO Provide a nixos module for easy installation and configuration # nixosModules.default = import ./module.nix; + + # Deprecated + overlay = _: prev: { + hyprland = self.packages.${prev.system}.default; + }; }; }