2022-05-08 21:57:40 +05:30
|
|
|
{
|
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 21:57:40 +05:30
|
|
|
inputs = {
|
2022-05-17 13:11:24 +02:00
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
2023-05-02 10:54:29 -07:00
|
|
|
|
2022-05-17 13:11:24 +02:00
|
|
|
wlroots = {
|
2022-06-22 23:23:46 +03:00
|
|
|
url = "gitlab:wlroots/wlroots?host=gitlab.freedesktop.org";
|
2022-05-16 16:01:28 +01:00
|
|
|
flake = false;
|
|
|
|
};
|
2022-12-04 21:29:12 +02:00
|
|
|
|
2023-01-07 20:33:15 +02:00
|
|
|
hyprland-protocols = {
|
|
|
|
url = "github:hyprwm/hyprland-protocols";
|
2022-12-04 21:29:12 +02:00
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2022-12-05 17:05:15 +00:00
|
|
|
|
2023-01-07 20:33:15 +02:00
|
|
|
xdph = {
|
|
|
|
url = "github:hyprwm/xdg-desktop-portal-hyprland";
|
2023-01-07 20:25:20 +02:00
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
2023-01-07 20:33:15 +02:00
|
|
|
inputs.hyprland-protocols.follows = "hyprland-protocols";
|
2022-12-05 17:05:15 +00:00
|
|
|
};
|
2022-05-08 21:57:40 +05:30
|
|
|
};
|
|
|
|
|
2022-05-17 13:11:24 +02:00
|
|
|
outputs = inputs @ {
|
|
|
|
self,
|
|
|
|
nixpkgs,
|
|
|
|
...
|
|
|
|
}: let
|
2023-05-02 10:54:29 -07:00
|
|
|
lib = nixpkgs.lib.extend (import ./nix/lib.nix);
|
2022-05-21 12:07:55 +02:00
|
|
|
genSystems = lib.genAttrs [
|
2022-06-20 11:50:06 +02:00
|
|
|
# Add more systems if they are supported
|
2022-08-09 13:17:47 +03:00
|
|
|
"aarch64-linux"
|
2022-05-17 13:11:24 +02:00
|
|
|
"x86_64-linux"
|
|
|
|
];
|
2022-10-23 00:01:55 +03:00
|
|
|
|
2023-04-23 23:43:48 +03:00
|
|
|
pkgsFor = genSystems (system:
|
|
|
|
import nixpkgs {
|
|
|
|
inherit system;
|
|
|
|
overlays = [
|
2023-05-02 10:54:29 -07:00
|
|
|
self.overlays.hyprland-packages
|
|
|
|
self.overlays.wlroots-hyprland
|
|
|
|
inputs.hyprland-protocols.overlays.default
|
2023-04-23 23:43:48 +03:00
|
|
|
];
|
|
|
|
});
|
2022-06-20 12:16:07 +02:00
|
|
|
in {
|
2023-05-02 10:54:29 -07:00
|
|
|
overlays =
|
|
|
|
(import ./nix/overlays.nix {inherit self lib inputs;})
|
|
|
|
// {
|
|
|
|
default =
|
|
|
|
lib.mkJoinedOverlays
|
|
|
|
(with self.overlays; [
|
|
|
|
hyprland-packages
|
|
|
|
hyprland-extras
|
|
|
|
wlroots-hyprland
|
2023-05-04 15:47:15 +01:00
|
|
|
inputs.hyprland-protocols.overlays.default
|
2023-05-02 10:54:29 -07:00
|
|
|
]);
|
2022-12-09 16:25:57 +02:00
|
|
|
};
|
2022-06-20 12:16:07 +02:00
|
|
|
|
2023-03-04 16:43:26 +02:00
|
|
|
checks = genSystems (system:
|
2023-05-02 10:54:29 -07:00
|
|
|
(lib.filterAttrs
|
|
|
|
(n: _: (lib.hasPrefix "hyprland" n) && !(lib.hasSuffix "debug" n))
|
|
|
|
self.packages.${system})
|
|
|
|
// {
|
|
|
|
inherit (self.packages.${system}) xdg-desktop-portal-hyprland;
|
|
|
|
});
|
2023-03-04 16:43:26 +02:00
|
|
|
|
2022-06-20 11:50:06 +02:00
|
|
|
packages = genSystems (system:
|
2023-05-02 10:54:29 -07:00
|
|
|
(self.overlays.default pkgsFor.${system} 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 21:24:34 +02:00
|
|
|
devShells = genSystems (system: {
|
2023-05-02 10:54:29 -07:00
|
|
|
default = pkgsFor.${system}.mkShell {
|
2022-07-08 18:34:23 +03:00
|
|
|
name = "hyprland-shell";
|
2023-05-02 10:54:29 -07:00
|
|
|
nativeBuildInputs = with pkgsFor.${system}; [cmake];
|
|
|
|
buildInputs = [self.packages.${system}.wlroots-hyprland];
|
2022-07-08 18:34:23 +03: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 21:29:12 +02:00
|
|
|
nixosModules.default = import ./nix/module.nix inputs;
|
2022-07-27 11:32:42 -03:00
|
|
|
homeManagerModules.default = import ./nix/hm-module.nix self;
|
2022-05-17 13:11:24 +02:00
|
|
|
};
|
2022-08-26 18:58:42 +03:00
|
|
|
|
|
|
|
nixConfig = {
|
|
|
|
extra-substituters = ["https://hyprland.cachix.org"];
|
|
|
|
extra-trusted-public-keys = ["hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="];
|
|
|
|
};
|
2022-05-08 21:57:40 +05:30
|
|
|
}
|