mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-25 17:53:17 +01:00
ed11061d61
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.
24 lines
432 B
Nix
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 ];
|
|
};
|
|
}
|