2022-05-08 18:27:40 +02:00
|
|
|
{
|
2022-05-17 13:11:24 +02:00
|
|
|
description = "Hyprland is a dynamic tiling Wayland compositor that doesn't sacrifice on its looks";
|
|
|
|
|
2022-05-08 18:27:40 +02:00
|
|
|
inputs = {
|
2022-05-17 13:11:24 +02:00
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
|
|
wlroots = {
|
2022-06-22 22:23:46 +02:00
|
|
|
url = "gitlab:wlroots/wlroots?host=gitlab.freedesktop.org";
|
2022-05-16 17:01:28 +02:00
|
|
|
flake = false;
|
|
|
|
};
|
2022-12-04 20:29:12 +01:00
|
|
|
|
|
|
|
xdph = {
|
|
|
|
url = "github:hyprwm/xdg-desktop-portal-hyprland";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2022-12-05 18:05:15 +01:00
|
|
|
|
|
|
|
hyprland-protocols = {
|
|
|
|
url = "github:hyprwm/hyprland-protocols";
|
|
|
|
flake = false;
|
|
|
|
};
|
2022-05-08 18:27:40 +02:00
|
|
|
};
|
|
|
|
|
2022-05-17 13:11:24 +02:00
|
|
|
outputs = inputs @ {
|
|
|
|
self,
|
|
|
|
nixpkgs,
|
|
|
|
...
|
|
|
|
}: let
|
2022-05-21 12:07:55 +02:00
|
|
|
inherit (nixpkgs) lib;
|
|
|
|
genSystems = lib.genAttrs [
|
2022-06-20 11:50:06 +02:00
|
|
|
# Add more systems if they are supported
|
2022-08-09 12:17:47 +02:00
|
|
|
"aarch64-linux"
|
2022-05-17 13:11:24 +02:00
|
|
|
"x86_64-linux"
|
|
|
|
];
|
2022-10-22 23:01:55 +02:00
|
|
|
|
2022-12-19 22:46:18 +01:00
|
|
|
pkgsFor = nixpkgs.legacyPackages;
|
2022-10-22 23:01:55 +02:00
|
|
|
|
2022-06-20 11:50:06 +02:00
|
|
|
mkDate = longDate: (lib.concatStringsSep "-" [
|
2022-10-15 00:39:49 +02:00
|
|
|
(builtins.substring 0 4 longDate)
|
|
|
|
(builtins.substring 4 2 longDate)
|
|
|
|
(builtins.substring 6 2 longDate)
|
2022-06-20 11:50:06 +02:00
|
|
|
]);
|
2022-06-20 12:16:07 +02:00
|
|
|
in {
|
|
|
|
overlays.default = _: prev: rec {
|
2022-09-01 19:35:50 +02:00
|
|
|
wlroots-hyprland = prev.callPackage ./nix/wlroots.nix {
|
2022-08-31 11:26:12 +02:00
|
|
|
version = mkDate (inputs.wlroots.lastModifiedDate or "19700101") + "_" + (inputs.wlroots.shortRev or "dirty");
|
2022-05-17 13:11:24 +02:00
|
|
|
src = inputs.wlroots;
|
2022-09-01 19:35:50 +02:00
|
|
|
};
|
2022-06-20 11:50:06 +02:00
|
|
|
hyprland = prev.callPackage ./nix/default.nix {
|
2022-07-06 17:41:20 +02:00
|
|
|
stdenv = prev.gcc12Stdenv;
|
2022-12-21 08:13:29 +01:00
|
|
|
version = "0.19.2beta" + "+date=" + (mkDate (self.lastModifiedDate or "19700101")) + "_" + (self.shortRev or "dirty");
|
2022-06-20 11:50:06 +02:00
|
|
|
wlroots = wlroots-hyprland;
|
2022-12-05 18:05:15 +01:00
|
|
|
inherit (inputs) hyprland-protocols;
|
2022-05-17 13:11:24 +02:00
|
|
|
};
|
2022-06-29 13:46:41 +02:00
|
|
|
hyprland-debug = hyprland.override {debug = true;};
|
2022-08-29 15:51:39 +02:00
|
|
|
hyprland-no-hidpi = hyprland.override {hidpiXWayland = false;};
|
|
|
|
|
2022-06-29 13:46:41 +02:00
|
|
|
waybar-hyprland = prev.waybar.overrideAttrs (oldAttrs: {
|
|
|
|
mesonFlags = oldAttrs.mesonFlags ++ ["-Dexperimental=true"];
|
|
|
|
});
|
2022-12-09 15:25:57 +01:00
|
|
|
|
2022-12-30 07:19:15 +01:00
|
|
|
xdg-desktop-portal-hyprland = inputs.xdph.packages.${prev.hostPlatform.system}.default.override {
|
|
|
|
hyprland-share-picker = inputs.xdph.packages.${prev.hostPlatform.system}.hyprland-share-picker.override {inherit hyprland;};
|
2022-12-09 15:25:57 +01:00
|
|
|
};
|
2022-06-20 11:50:06 +02:00
|
|
|
};
|
2022-06-20 12:16:07 +02:00
|
|
|
|
2022-06-20 11:50:06 +02:00
|
|
|
packages = genSystems (system:
|
2022-06-20 12:16:07 +02:00
|
|
|
(self.overlays.default null pkgsFor.${system})
|
2022-06-20 11:50:06 +02:00
|
|
|
// {
|
|
|
|
default = self.packages.${system}.hyprland;
|
|
|
|
});
|
2022-05-17 15:10:00 +02:00
|
|
|
|
2022-12-04 20:24:34 +01:00
|
|
|
devShells = genSystems (system: {
|
2022-07-08 17:34:23 +02:00
|
|
|
default = pkgsFor.${system}.mkShell.override {stdenv = pkgsFor.${system}.gcc12Stdenv;} {
|
|
|
|
name = "hyprland-shell";
|
2022-12-04 18:58:45 +01:00
|
|
|
nativeBuildInputs = with pkgsFor.${system}; [
|
|
|
|
cmake
|
|
|
|
];
|
|
|
|
buildInputs = [
|
|
|
|
self.packages.${system}.wlroots-hyprland
|
|
|
|
];
|
2022-07-08 17:34:23 +02:00
|
|
|
inputsFrom = [
|
|
|
|
self.packages.${system}.wlroots-hyprland
|
|
|
|
self.packages.${system}.hyprland
|
|
|
|
];
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2022-05-17 14:03:58 +02:00
|
|
|
formatter = genSystems (system: pkgsFor.${system}.alejandra);
|
2022-05-17 15:10:00 +02:00
|
|
|
|
2022-12-04 20:29:12 +01:00
|
|
|
nixosModules.default = import ./nix/module.nix inputs;
|
2022-07-27 16:32:42 +02:00
|
|
|
homeManagerModules.default = import ./nix/hm-module.nix self;
|
2022-05-17 13:11:24 +02:00
|
|
|
};
|
2022-08-26 17:58:42 +02:00
|
|
|
|
|
|
|
nixConfig = {
|
|
|
|
extra-substituters = ["https://hyprland.cachix.org"];
|
|
|
|
extra-trusted-public-keys = ["hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="];
|
|
|
|
};
|
2022-05-08 18:27:40 +02:00
|
|
|
}
|