Jump to content

Talk:Full Disk Encryption: Difference between revisions

From NixOS Wiki
imported>Pmahoney
aes_x86_64 kernel module seems to be gone
 
Pigeon (talk | contribs)
 
Line 1: Line 1:
aes_x86_64 kernel module seems to be gone? I'm seeing same error as in (until I remove it from boot.initrd.availableKernelModules) https://bugs.archlinux.org/task/64721
aes_x86_64 kernel module seems to be gone? I'm seeing same error as in (until I remove it from boot.initrd.availableKernelModules) https://bugs.archlinux.org/task/64721
== Add services.getty.autologinOnce to #Autologin_using_LUKS_password ==
<syntaxhighlight lang="nix">
services.getty = {
    autologinUser = "<username>";
    autologinOnce = true;
};
</syntaxhighlight>
Seems to be all that is needed.
Worth mentioning that i use <code>gnome.gnome-keyring</code> instead of KWallet and i login on tty (don't use display manager). With this setup, aforementioned <code>getty</code> config works and doesn't cause issues.
Don't know of others' experience so i decided to open discussion before adding this to the wiki. [[User:Pigeon|Pigeon]] ([[User talk:Pigeon|talk]]) 13:02, 10 September 2025 (UTC)

Latest revision as of 13:02, 10 September 2025

aes_x86_64 kernel module seems to be gone? I'm seeing same error as in (until I remove it from boot.initrd.availableKernelModules) https://bugs.archlinux.org/task/64721

Add services.getty.autologinOnce to #Autologin_using_LUKS_password

services.getty = { 
    autologinUser = "<username>";
    autologinOnce = true;
};

Seems to be all that is needed.

Worth mentioning that i use gnome.gnome-keyring instead of KWallet and i login on tty (don't use display manager). With this setup, aforementioned getty config works and doesn't cause issues.

Don't know of others' experience so i decided to open discussion before adding this to the wiki. Pigeon (talk) 13:02, 10 September 2025 (UTC)Reply