diff options
author | Fernando Ayats <[email protected]> | 2022-05-17 15:10:00 +0200 |
---|---|---|
committer | Fernando Ayats <[email protected]> | 2022-05-17 15:10:00 +0200 |
commit | b3276d32077b7883e4cede784b6598fc3ca403c0 (patch) | |
tree | 9fb95fef5505aa3958bd170bf0aa7d96743c478a | |
parent | c7dc0fd50986a353a814cd65360a8ee17c5186a0 (diff) | |
download | Hyprland-b3276d32077b7883e4cede784b6598fc3ca403c0.tar.gz Hyprland-b3276d32077b7883e4cede784b6598fc3ca403c0.zip |
nix: add overlay back
-rw-r--r-- | flake.nix | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -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; + }; }; } |