nix-config/modules/hyprland.nix
Donovan Glover ed11061d61
hyprland: Use latest commit
This was the only way I could get plugins to work reliably. Might look
into this in the future, but v0.27.2 also includes some changes not
present in v0.27.0.
2023-08-01 16:21:10 -04:00

24 lines
432 B
Nix

{ pkgs, hyprland, ... }:
{
programs.hyprland = {
enable = true;
package = hyprland.packages.${pkgs.system}.hyprland;
};
i18n.inputMethod.enabled = "fcitx5";
i18n.inputMethod.fcitx5.addons = [ pkgs.fcitx5-mozc ];
security.pam.services.swaylock = { };
services.udisks2 = {
enable = true;
mountOnMedia = true;
};
services.xserver = {
enable = true;
excludePackages = [ pkgs.xterm ];
};
}