Mihai Fufezan
Mihai Fufezan
can you check whether `hyprland-plugins` actually has `hyprland -> hyprland`?
Hm, that looks good.
`programs.hyprland` should only be needed for the Hyprland session to show up in display managers. I can't say for sure why you can't launch Hyprland in tty when setting its...
Oh, it might be that the portals aren't set up properly/at all in the HM module.
Adding ```nix xdg.portal = { enable = true; extraPortals = [config.wayland.windowManager.hyprland.package]; configPackages = [config.wayland.windowManager.hyprland.package]; } ``` to your HM config should make everything work again. In the meantime I'm going...
Odd, did you reboot?
I've created a PR [here](https://github.com/nix-community/home-manager/pull/5707).
Let me check if it works for me without including the upstream modules.
Using this patch, everything is still fine ```diff diff --git a/home/programs/wayland/hyprland/default.nix b/home/programs/wayland/hyprland/default.nix index ed720b7..134ef76 100644 --- a/home/programs/wayland/hyprland/default.nix +++ b/home/programs/wayland/hyprland/default.nix @@ -7,7 +7,7 @@ cursorPackage = inputs.self.packages.${pkgs.system}.bibata-hyprcursor; in { imports =...
I don't see why it should fail, but you can also try using the upstream NixOS module, in which we've added the ability to configure Hyprland just like using the...