1
0
forked from extern/nix-config

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:
Donovan Glover 2023-08-01 16:21:09 -04:00
parent c231825512
commit ed11061d61
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
3 changed files with 11 additions and 4 deletions

View File

@ -2,6 +2,10 @@
inputs = {
nixpkgs.url = "github:donovanglover/nixpkgs/personal-unstable";
hyprland = {
url = "github:hyprwm/Hyprland";
};
home-manager = {
url = "github:donovanglover/home-manager/personal-master";
inputs.nixpkgs.follows = "nixpkgs";

View File

@ -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";
};
};

View File

@ -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 ];