Nicolas Berbiche
Nicolas Berbiche
@asymmetric hi, do you have multiple notification daemons on your system? They are likely fighting to register for the notification daemon. If you run the following command, you should get...
> > > > > > You need to open a new shell otherwise hm does not reload the ENVs. > > Yep, I understand that. Even after restarting completely,...
If systemd does not parse the command string correctly, the `ExecStart` could point to a shell script (e.g. `pkgs.writeShellScript`)
@PedroHLC Your issue is not related to this ticket, the $PATH environment variable in systemd services only contains systemd's binaries, this is why you see these execve errors. swayidle tries...
@PedroHLC sorry, I forgot the issue was that swayidle runs executables with `sh -c` and `sh` is not in the $PATH. See my comment here https://github.com/nix-community/home-manager/pull/2849#discussion_r846411403 for a possible fix....
> waybar's gtk seems to ignore my settings when run under systemd What settings do you mean?
@colemickens do you have `dconf.enable = true` in your configuration? There's a hook that will automatically update your dconf settings and set the correct theme.
You could try changing the GTK theme with `dconf write /org/gnome/desktop/interface/gtk-theme "'Adwaita'"` or `gsettings set org.gnome.desktop.interface gtk-theme Adwaita`. Waybar's interface should automatically update.
Is there anything actionable on Home Manager's side?
Hi, I could not reproduce the issue on my system. I have added `environment.pathsToLink = [ "/share/zsh" ];` in my system configuration as documented here: https://nix-community.github.io/home-manager/options.html#opt-programs.zsh.enableCompletion The logic that is...