mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-08-14 17:08:32 +02:00
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.
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
{ pkgs, ... }:
|
||||
{ pkgs, hyprland, ... }:
|
||||
|
||||
{
|
||||
services.greetd = {
|
||||
@ -12,7 +12,7 @@
|
||||
};
|
||||
|
||||
initial_session = {
|
||||
command = "${pkgs.hyprland}/bin/Hyprland";
|
||||
command = "${hyprland.packages.${pkgs.system}.hyprland}/bin/Hyprland";
|
||||
user = "user";
|
||||
};
|
||||
};
|
||||
|
@ -1,7 +1,10 @@
|
||||
{ pkgs, ... }:
|
||||
{ pkgs, hyprland, ... }:
|
||||
|
||||
{
|
||||
programs.hyprland.enable = true;
|
||||
programs.hyprland = {
|
||||
enable = true;
|
||||
package = hyprland.packages.${pkgs.system}.hyprland;
|
||||
};
|
||||
|
||||
i18n.inputMethod.enabled = "fcitx5";
|
||||
i18n.inputMethod.fcitx5.addons = [ pkgs.fcitx5-mozc ];
|
||||
|
Reference in New Issue
Block a user