From e6a2155cfb937576e3d5a2f6528aba34b3b1a2d1 Mon Sep 17 00:00:00 2001 From: Nick Date: Wed, 16 Apr 2025 12:34:55 -0500 Subject: [PATCH] feat: changed bind file logic to user1 --- modules/home/gui/desktop/hypr/land/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/home/gui/desktop/hypr/land/default.nix b/modules/home/gui/desktop/hypr/land/default.nix index 5a82a37..018f359 100755 --- a/modules/home/gui/desktop/hypr/land/default.nix +++ b/modules/home/gui/desktop/hypr/land/default.nix @@ -6,7 +6,7 @@ }: let - inherit (flake.config.people) user0; + inherit (flake.config.people) user1; user = config.home.username; configPath = ./config; @@ -27,10 +27,10 @@ let bind = let bindConfig = - if user == user0 then - import (configPath + /bind-user0.nix) + if user == user1 then + import (configPath + /bind-user1.nix) else - import (configPath + /bind-user1.nix); + import (configPath + /bind-user0.nix); in bindConfig; };