mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-23 05:09:32 -08:00
36 lines
628 B
Nix
36 lines
628 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
networking.networkmanager.enable = true;
|
||
|
|
||
|
security.pam.services = {
|
||
|
lightdm.enableKwallet = true;
|
||
|
};
|
||
|
|
||
|
services.xserver = {
|
||
|
enable = true;
|
||
|
layout = "us";
|
||
|
xkbOptions = "caps:super";
|
||
|
|
||
|
desktopManager.plasma5.enable = true;
|
||
|
displayManager = {
|
||
|
lightdm.enable = true;
|
||
|
};
|
||
|
|
||
|
libinput = {
|
||
|
enable = true;
|
||
|
touchpad = {
|
||
|
tapping = true;
|
||
|
naturalScrolling = true;
|
||
|
disableWhileTyping = true;
|
||
|
tappingDragLock = true;
|
||
|
|
||
|
additionalOptions = ''
|
||
|
Option "TappingButtonMap" "lmr"
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
}
|