From 25414b7209eb8f033522e7168cc782b42654d73d Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Thu, 4 Jun 2026 13:54:19 -0500 Subject: [PATCH] [galandor] waycorner service --- systems/galandor/configuration.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/systems/galandor/configuration.nix b/systems/galandor/configuration.nix index 4946087..385cd40 100644 --- a/systems/galandor/configuration.nix +++ b/systems/galandor/configuration.nix @@ -162,6 +162,19 @@ # Enable the OpenSSH daemon. services.openssh.enable = true; + systemd.user.services.waycorner = { + enable = true; + after = [ "cosmic-session.target" ]; + wantedBy = [ "cosmic-session.target" ]; + bindsTo = [ "cosmic-session.target" ]; + description = "Hot corners for cosmic"; + serviceConfig = { + ExecCondition = "pgrep -xf cosmic-workspaces"; + ExecStart = "waycorner"; + Restart = "on-failure"; + RestartSec = 2; + }; + }; # Open ports in the firewall. # networking.firewall.allowedTCPPorts = [ ... ]; # networking.firewall.allowedUDPPorts = [ ... ];