mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-03-12 13:28:54 +01: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:
parent
c231825512
commit
ed11061d61
@ -2,6 +2,10 @@
|
|||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:donovanglover/nixpkgs/personal-unstable";
|
nixpkgs.url = "github:donovanglover/nixpkgs/personal-unstable";
|
||||||
|
|
||||||
|
hyprland = {
|
||||||
|
url = "github:hyprwm/Hyprland";
|
||||||
|
};
|
||||||
|
|
||||||
home-manager = {
|
home-manager = {
|
||||||
url = "github:donovanglover/home-manager/personal-master";
|
url = "github:donovanglover/home-manager/personal-master";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ pkgs, ... }:
|
{ pkgs, hyprland, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
services.greetd = {
|
services.greetd = {
|
||||||
@ -12,7 +12,7 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
initial_session = {
|
initial_session = {
|
||||||
command = "${pkgs.hyprland}/bin/Hyprland";
|
command = "${hyprland.packages.${pkgs.system}.hyprland}/bin/Hyprland";
|
||||||
user = "user";
|
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.enabled = "fcitx5";
|
||||||
i18n.inputMethod.fcitx5.addons = [ pkgs.fcitx5-mozc ];
|
i18n.inputMethod.fcitx5.addons = [ pkgs.fcitx5-mozc ];
|
||||||
|
Loading…
Reference in New Issue
Block a user