diff options
Diffstat (limited to 'flake.nix')
-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; + }; }; } |