Hyprland/flake.nix

127 lines
3.4 KiB
Nix
Raw Normal View History

{
description = "Hyprland is a dynamic tiling Wayland compositor that doesn't sacrifice on its looks";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
# <https://github.com/nix-systems/nix-systems>
systems.url = "github:nix-systems/default-linux";
wlroots = {
type = "github";
owner = "hyprwm";
repo = "wlroots-hyprland";
2024-04-21 22:34:55 +02:00
rev = "5c1d51c5a2793480f5b6c4341ad0797052aec2ea";
2022-05-16 17:01:28 +02:00
flake = false;
};
2022-12-04 20:29:12 +01:00
hyprcursor = {
url = "github:hyprwm/hyprcursor";
inputs.nixpkgs.follows = "nixpkgs";
inputs.systems.follows = "systems";
inputs.hyprlang.follows = "hyprlang";
};
2023-01-07 19:33:15 +01:00
hyprland-protocols = {
url = "github:hyprwm/hyprland-protocols";
2022-12-04 20:29:12 +01:00
inputs.nixpkgs.follows = "nixpkgs";
inputs.systems.follows = "systems";
2022-12-04 20:29:12 +01:00
};
hyprlang = {
url = "github:hyprwm/hyprlang";
inputs.nixpkgs.follows = "nixpkgs";
inputs.systems.follows = "systems";
};
hyprwayland-scanner = {
url = "github:hyprwm/hyprwayland-scanner";
inputs.nixpkgs.follows = "nixpkgs";
inputs.systems.follows = "systems";
};
2023-01-07 19:33:15 +01:00
xdph = {
url = "github:hyprwm/xdg-desktop-portal-hyprland";
inputs.nixpkgs.follows = "nixpkgs";
inputs.systems.follows = "systems";
2023-01-07 19:33:15 +01:00
inputs.hyprland-protocols.follows = "hyprland-protocols";
inputs.hyprlang.follows = "hyprlang";
};
};
outputs = inputs @ {
self,
nixpkgs,
systems,
...
}: let
inherit (nixpkgs) lib;
eachSystem = lib.genAttrs (import systems);
pkgsFor = eachSystem (system:
2023-04-23 22:43:48 +02:00
import nixpkgs {
localSystem = system;
overlays = with self.overlays; [
hyprland-packages
hyprland-extras
2023-04-23 22:43:48 +02:00
];
});
2022-06-20 12:16:07 +02:00
in {
overlays = import ./nix/overlays.nix {inherit self lib inputs;};
2022-06-20 12:16:07 +02:00
checks = eachSystem (system:
(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 15:43:26 +01:00
packages = eachSystem (system: {
default = self.packages.${system}.hyprland;
inherit
(pkgsFor.${system})
# hyprland-packages
hyprland
hyprland-debug
2023-12-13 12:31:36 +01:00
hyprland-legacy-renderer
hyprland-unwrapped
# hyprland-extras
xdg-desktop-portal-hyprland
# dependencies
hyprland-protocols
wlroots-hyprland
udis86
;
});
2022-05-17 15:10:00 +02:00
devShells = eachSystem (system: {
default =
pkgsFor.${system}.mkShell.override {
stdenv = pkgsFor.${system}.gcc13Stdenv;
} {
name = "hyprland-shell";
nativeBuildInputs = with pkgsFor.${system}; [cmake python3 expat libxml2];
buildInputs = [self.packages.${system}.wlroots-hyprland];
hardeningDisable = ["fortify"];
inputsFrom = [
self.packages.${system}.wlroots-hyprland
self.packages.${system}.hyprland
];
};
2022-07-08 17:34:23 +02:00
});
formatter = eachSystem (system: nixpkgs.legacyPackages.${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-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="];
};
}