aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorFernando Ayats <[email protected]>2022-05-17 15:10:00 +0200
committerFernando Ayats <[email protected]>2022-05-17 15:10:00 +0200
commitb3276d32077b7883e4cede784b6598fc3ca403c0 (patch)
tree9fb95fef5505aa3958bd170bf0aa7d96743c478a
parentc7dc0fd50986a353a814cd65360a8ee17c5186a0 (diff)
downloadHyprland-b3276d32077b7883e4cede784b6598fc3ca403c0.tar.gz
Hyprland-b3276d32077b7883e4cede784b6598fc3ca403c0.zip
nix: add overlay back
-rw-r--r--flake.nix9
1 files changed, 8 insertions, 1 deletions
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;
+ };
};
}