From 64572cb106a6725178e3651a6008017eeb2419bc Mon Sep 17 00:00:00 2001 From: Nick Date: Thu, 26 Jun 2025 02:46:03 -0500 Subject: [PATCH] chore: removed dead imports --- modules/home/gui/desktop/niri/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/home/gui/desktop/niri/default.nix b/modules/home/gui/desktop/niri/default.nix index 63ed4d2..c9e4b8d 100755 --- a/modules/home/gui/desktop/niri/default.nix +++ b/modules/home/gui/desktop/niri/default.nix @@ -53,7 +53,7 @@ let }; startup = import (configPath + /startup.nix) { inherit lib pkgs; }; style = import (configPath + /style.nix) { inherit flake; }; - windowrules = import (configPath + /windowrules.nix) { inherit flake; }; + windowrules = import (configPath + /windowrules.nix) { inherit flake workspaceStrings; }; workspaces = import (configPath + /workspaces.nix) { inherit workspaceStrings; }; in binds // layout // main // outputs // startup // style // windowrules // workspaces;