From a7259093953912ebb031eba62f2237573de96473 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laure=CE=B7t?= Date: Sat, 25 May 2024 17:22:06 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20(home/wayland/kanshi)=20replace?= =?UTF-8?q?=20deprecated=20config?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- home/wayland/kanshi/default.nix | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/home/wayland/kanshi/default.nix b/home/wayland/kanshi/default.nix index a98353e..ca84b42 100644 --- a/home/wayland/kanshi/default.nix +++ b/home/wayland/kanshi/default.nix @@ -3,9 +3,10 @@ enable = true; systemdTarget = "hyprland-session.target"; - profiles = { - office = { - outputs = [ + settings = [ + { + profile.name = "office"; + profile.outputs = [ { criteria = "DP-3"; status = "enable"; @@ -15,15 +16,16 @@ status = "disable"; } ]; - }; - home = { - outputs = [ + } + { + profile.name = "home"; + profile.outputs = [ { criteria = "eDP-1"; status = "enable"; } ]; - }; - }; + } + ]; }; }