3
0
mirror of https://github.com/hyprwm/Hyprland.git synced 2026-02-04 18:05:37 +00:00
Files
Hyprland/nix/hm-module.nix
2023-12-14 20:02:20 +02:00

15 lines
230 B
Nix

self: {
config,
lib,
pkgs,
...
}: let
inherit (pkgs.stdenv.hostPlatform) system;
package = self.packages.${system}.default;
in {
config = {
wayland.windowManager.hyprland.package = lib.mkDefault package;
};
}