fix: resolve hyprland-qtutils dep error

This commit is contained in:
Zhongheng Liu 2024-12-28 08:41:11 +02:00
commit 7962850c82
Signed by: steven
GPG key ID: 805A28B071DAD84B
3 changed files with 152 additions and 12 deletions

View file

@ -1,10 +1,14 @@
{
inputs,
config,
pkgs,
lib,
...
}: {
home.packages = with pkgs; [foot];
home.packages = [
inputs.hyprland-qtutils.packages.x86_64-linux.default
pkgs.foot
];
wayland.windowManager.hyprland = {
# Whether to enable Hyprland wayland compositor
enable = true;
@ -12,6 +16,7 @@
package = pkgs.hyprland;
plugins = with pkgs.hyprlandPlugins; [
# hyprfocus
# hycov
];
# Whether to enable XWayland
xwayland.enable = true;
@ -45,8 +50,8 @@
config.myAutostartCommands
++ [
# future hyprland-specific exec commands
"${config.programs.firefox.package}/bin/firefox"
"${pkgs.thunderbird}/bin/thunderbird"
#"${config.programs.firefox.package}/bin/firefox"
#"${pkgs.thunderbird}/bin/thunderbird"
];
misc = {
disable_hyprland_logo = true;