This commit is contained in:
2026-05-08 00:11:30 +09:00
parent d7d6d6009e
commit 441351bc5f
2 changed files with 11 additions and 2 deletions

View File

@@ -10,7 +10,10 @@
inputs.nixpkgs.follows = "nixpkgs";
};
split-monitor-workspaces = {
url = "github:Duckonaut/split-monitor-workspaces";
type = "github";
owner = "zjeffer";
repo = "split-monitor-workspaces";
ref = "feat/zjeffer/lua";
inputs.hyprland.follows = "hyprland";
};
};

View File

@@ -1 +1,7 @@
{ inputs, pkgs, ... }: { programs.hyprland = { enable = true; }; }
{ inputs, pkgs, ... }:
{
programs.hyprland = {
enable = true;
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
};
}