nicks-nix-config/modules/plasma_desktop.nix
Nickiel12 1b6b2d55a7 fix: Fixed wallet issues by switching to SDDM
switched from lightdm to SDDM to fix users list not populating and wallet not unlockingx
2023-01-14 13:59:23 -08:00

43 lines
813 B
Nix

{ config, pkgs, ... }:
{
networking.networkmanager.enable = true;
security.pam.services.kwallet = {
name = "kdewallet";
enableKwallet = true;
};
#environment.systemPackages = with pkgs; [
# KWallet
# pkgs.libsForQt5.kwallet
# pkgs.libsForQt5.kwallet-pam
# pkgs.libsForQt5.kwalletmanager
#];
services.xserver = {
enable = true;
layout = "us";
xkbOptions = "caps:super";
desktopManager.plasma5.enable = true;
displayManager = {
sddm.enable = true;
};
libinput = {
enable = true;
touchpad = {
tapping = true;
naturalScrolling = true;
disableWhileTyping = true;
tappingDragLock = true;
additionalOptions = ''
Option "TappingButtonMap" "lmr"
'';
};
};
};
}