From 01b20ef01c192c0255ce1ce36f2aed2edc3cd2cf Mon Sep 17 00:00:00 2001 From: ryan Date: Sun, 10 Aug 2025 20:59:54 -0700 Subject: [PATCH] claude sucks --- nix/nixos-module.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/nixos-module.nix b/nix/nixos-module.nix index 8049a6c..0281bab 100644 --- a/nix/nixos-module.nix +++ b/nix/nixos-module.nix @@ -81,6 +81,8 @@ in RELEASE_COOKIE = "systant-bypass-cookie"; # Set log level to debug for troubleshooting SYSTANT_LOG_LEVEL = "debug"; + # Ensure we have the full system PATH including /run/current-system/sw/bin where grim lives + PATH = mkForce "/run/wrappers/bin:/run/current-system/sw/bin:/usr/bin:/bin"; }; serviceConfig = { @@ -93,8 +95,6 @@ in StandardError = "journal"; SyslogIdentifier = "systant"; WorkingDirectory = "${cfg.package}"; - # Import environment from user session - ExecStartPre = "${pkgs.systemd}/bin/systemctl --user import-environment PATH XDG_RUNTIME_DIR WAYLAND_DISPLAY"; }; }; };