mirror of
https://github.com/hyprwm/Hyprland.git
synced 2024-11-29 07:16:49 +03:00
15 lines
230 B
Nix
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;
|
|
};
|
|
}
|