I am using hyprland, and in it’s config I set key binding to run chromium:
bind = $mainMod, G, exec, chromium
But, I found that it runs different chromium binary which differs from my chromium which i configured in /etc/nixos/configuration …
so then I run it from console it’s ok - it use correct binary like this :
which chromium
/etc/profiles/per-user/user1/bin/chromium
but then I run it with keybinding from config above I found that is runs something like this:
ls -l /proc/15808/exe
/nix/store/1ldcf59h42lvnkmzj2n2ynh674ns7r58-chromium-unwrapped-125.0.6422.141/libexec/chromium/chromium
This is not chromium generated from nixos config for user1…
Why this happens? why I have this additional binary?
How can I run generated by system chromium (/etc/profiles/per-user/user1/bin/chromium) with hyprland keybinding ?
ps. I try to set in config directly “/etc/profiles/per-user/se7en/bin/chromium " but no effect it again run " /nix/store/1ldcf59h42lvnkmzj2n2ynh674ns7r58-chromium-unwrapped-125.0.6422.141/libexec/chromium/chromium” instead