Hyprland/nix/hm-module.nix

17 lines
220 B
Nix
Raw Normal View History

2026-03-02 20:56:00 +02:00
self:
{
2022-07-27 11:32:42 -03:00
lib,
pkgs,
...
2026-03-02 20:56:00 +02:00
}:
let
inherit (pkgs.stdenv.hostPlatform) system;
2022-07-27 11:32:42 -03:00
package = self.packages.${system}.default;
2026-03-02 20:56:00 +02:00
in
{
config = {
wayland.windowManager.hyprland.package = lib.mkDefault package;
2022-07-27 11:32:42 -03:00
};
}