something here caused the issue

This commit is contained in:
do butterflies cry? 2026-02-24 23:43:16 +10:00
parent cd89855ce2
commit 45ff93c873
17 changed files with 345 additions and 85 deletions

View file

@ -1,42 +1,29 @@
# NOTE: hyprland must be enabled in BOTH your host config (for running hyprland)
# and your home-manager config (for managing hyprland's config files)
# NOTE: and your home-manager config (for managing hyprland's config files)
{
pkgs,
inputs,
config,
lib,
...
}: {
options.hyprland = {
enable = lib.mkEnableOption "Hyprland";
};
config = lib.mkIf config.hyprland.enable {
config = {
wayland.windowManager.hyprland = {
enable = true;
package = pkgs.hyprland;
# package = pkgs.hyprland;
package = null;
portalPackage = null;
xwayland.enable = true;
systemd = {
enable = true;
# enable autostart of applications
# REF: `man 8 systemd-xdg-autostart-generator`
enableXdgAutostart = true;
};
# systemd = {
# enable = true;
# # enable autostart of applications
# # REF: `man 8 systemd-xdg-autostart-generator`
# enableXdgAutostart = true;
# };
plugins = with inputs; [
split-monitor-workspaces.packages.${pkgs.system}.split
];
# plugins = with inputs; [
# split-monitor-workspaces.packages.${pkgs.system}.split
# ];
};
xdg.portal = {
enable = true;
extraPortals = with pkgs; [
xdg-desktop-portal-gtk
];
};
# TODO: finish this
};
}