From c260a9c062846c9599c229d6c63790fe98af4e6c Mon Sep 17 00:00:00 2001 From: s0me1newithhand7s Date: Fri, 29 May 2026 16:22:19 +0300 Subject: [PATCH] feat(hand7s): kanshi service init Signed-off-by: s0me1newithhand7s --- hand7s/services/kanshi.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 hand7s/services/kanshi.nix diff --git a/hand7s/services/kanshi.nix b/hand7s/services/kanshi.nix new file mode 100644 index 0000000..5dcc32d --- /dev/null +++ b/hand7s/services/kanshi.nix @@ -0,0 +1,20 @@ +_: { + services = { + kanshi = { + enable = true; + systemdTarget = "hyprland-session.target"; + profiles = { + "default" = { + outputs = [ + { + criteria = "Shenzhen KTC Technology Group AQ27H3 0x00000001"; + mode = "2560x1440@165Hz"; + position = "0,0"; + adaptiveSync = true; + } + ]; + }; + }; + }; + }; +}