nixos: profiles: wm: fix i3lock PAM service

This was announced as a breaking change, and would lock me out if not
set.

I wish the transition went a bit slower, by first introducing the
option for each PAM service, and *then* toggling it. Oh well.
This commit is contained in:
Bruno BELANYI 2025-04-30 21:34:11 +01:00
parent bfda64288e
commit c5be292dfc

View file

@ -24,6 +24,8 @@ in
my.home.udiskie.enable = true; my.home.udiskie.enable = true;
# udiskie fails if it can't find this dbus service # udiskie fails if it can't find this dbus service
services.udisks2.enable = true; services.udisks2.enable = true;
# Ensure i3lock can actually unlock the session
security.pam.services.i3lock.enable = true;
}) })
]; ];
} }