Hello everyone!

I daily drive a Nobara install with my main drive being an LUKS encrypted M.2 drive. Every time I boot my computer I get presented with the password prompt to unlock the drive and afterwards get prompted with my login manager to login.

Is there any way to combine these steps into a single prompt? It is starting to get a bit annoying having two steps every time I boot.

  • kevincox
    link
    fedilink
    arrow-up
    1
    arrow-down
    1
    ·
    edit-2
    2 months ago

    On NixOS I did this:

    services.displayManager.autoLogin = {
    	enable = true;
    	user = "kevincox";
    };
    
    # Avoid setting up a keyring every time I do a non-auto login.
    # https://gitlab.gnome.org/GNOME/seahorse/-/issues/159
    security.pam.services.login.enableGnomeKeyring = lib.mkForce false;