From 3967227c74df474d85a25c94c3bf32d6f96e50c3 Mon Sep 17 00:00:00 2001 From: Ryan Schanzenbacher Date: Fri, 8 Mar 2024 14:05:30 -0500 Subject: [PATCH] added local bin to path and fixed shepherd issue --- home-config/bash_profile | 2 +- home-config/hypr/autostart.sh | 2 -- modules/ryan-config/base-system.scm | 3 ++- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/home-config/bash_profile b/home-config/bash_profile index 1aa335f..6bc7def 100644 --- a/home-config/bash_profile +++ b/home-config/bash_profile @@ -5,7 +5,7 @@ export XDG_SESSION_DESKTOP=sway export _JAVA_AWT_WM_NONREPEATING=1 export XDG_DATA_DIRS=$XDG_DATA_DIRS:~/.nix-profile/share -export PATH=$PATH:~/.nix-profile/bin +export PATH=~/.local/bin:$PATH:~/.nix-profile/bin # Honor per-interactive-shell startup file if [ -f ~/.bashrc ]; then . ~/.bashrc; fi diff --git a/home-config/hypr/autostart.sh b/home-config/hypr/autostart.sh index 5d7363d..7b327df 100755 --- a/home-config/hypr/autostart.sh +++ b/home-config/hypr/autostart.sh @@ -1,7 +1,5 @@ #!/usr/bin/env bash -hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK XDG_CURRENT_DESKTOP & - waybar & mako & diff --git a/modules/ryan-config/base-system.scm b/modules/ryan-config/base-system.scm index 6ecae35..dc589c9 100644 --- a/modules/ryan-config/base-system.scm +++ b/modules/ryan-config/base-system.scm @@ -212,7 +212,8 @@ (inherit config) (handle-power-key `ignore) (handle-suspend-key `ignore) - (handle-lid-switch `ignore))) + (handle-lid-switch `ignore) + (kill-user-processes? #t))) (delete pulseaudio-service-type) (delete gdm-service-type) (delete avahi-service-type)