So does it mean passing --cmd Hyprland > /dev/null to Tuigreet? If so then that wouldn't work with my setup, as I use sessions instead of cmd.
Here is how I have it in nixos
Yeah that's what I am using currently but I was told that by default it follows whatever nixpkgs version is in flake.nix and doing the registry thing is an extra step to make it more systematic.
For now I will keep using that.
Yeah thats what I am going to use cuz before when I was using jetbrainsmono I had all the bold, bold_italic etc and suddenly just removing em all doesn't feel good to me.
Gotcha. One last thing. Do I need to define helper colors as well? currently I am not doing that, but it is defined in the adw styleguide. Ain't no way gruvbox has that much color varieties so what's your suggestion?
Thanks for the replies. The issue seems to be with the stable branch version and is fixed in the unstable branch. The maintainer has opened a request to backport those changes to stable branch as well.
So does it mean passing
--cmd Hyprland > /dev/nullto Tuigreet? If so then that wouldn't work with my setup, as I use sessions instead of cmd. Here is how I have it in nixosservices.greetd = { enable = true; settings = { default_session = { user = "greeter"; command = '' ${getExe' pkgs.unstable.greetd.tuigreet "tuigreet"} \ --time \ --sessions ${cfg.sessionDirs} \ --remember \ --remember-session ''; }; }; };The
sessionDirsis thismodules.services.greetd.sessionDirs = ["${hyprlandPackage}/share/wayland-sessions"];This is a link to my dotfiles where I have it: