Hyprland/nix/hm-module.nix

15 lines
230 B
Nix
Raw Permalink Normal View History

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