mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 12:49:32 -08:00
fix: Fixed wallet issues by switching to SDDM
switched from lightdm to SDDM to fix users list not populating and wallet not unlockingx
This commit is contained in:
parent
ac1553f04a
commit
1b6b2d55a7
1 changed files with 10 additions and 7 deletions
|
@ -3,14 +3,17 @@
|
|||
{
|
||||
networking.networkmanager.enable = true;
|
||||
|
||||
security.pam.services.nixolas.enableKwallet = true;
|
||||
security.pam.services.kwallet = {
|
||||
name = "kdewallet";
|
||||
enableKwallet = true;
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
#environment.systemPackages = with pkgs; [
|
||||
# KWallet
|
||||
pkgs.libsForQt5.kwallet
|
||||
pkgs.libsForQt5.kwallet-pam
|
||||
pkgs.libsForQt5.kwalletmanager
|
||||
];
|
||||
# pkgs.libsForQt5.kwallet
|
||||
# pkgs.libsForQt5.kwallet-pam
|
||||
# pkgs.libsForQt5.kwalletmanager
|
||||
#];
|
||||
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
|
@ -19,7 +22,7 @@
|
|||
|
||||
desktopManager.plasma5.enable = true;
|
||||
displayManager = {
|
||||
lightdm.enable = true;
|
||||
sddm.enable = true;
|
||||
};
|
||||
|
||||
libinput = {
|
||||
|
|
Loading…
Reference in a new issue