mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 20:59:32 -08:00
35 lines
628 B
Nix
35 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"
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
}
|