mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 20:59:32 -08:00
Nickiel12
1b6b2d55a7
switched from lightdm to SDDM to fix users list not populating and wallet not unlockingx
43 lines
813 B
Nix
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"
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
}
|