mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 21:01:34 +01:00
Switch to 4 space indentation
This commit is contained in:
parent
a4cc33577c
commit
d7aed49725
32 changed files with 796 additions and 783 deletions
|
|
@ -1,29 +1,29 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
options.myConfig.x-input.enable = lib.mkEnableOption "";
|
||||
options.myConfig.x-input.enable = lib.mkEnableOption "";
|
||||
|
||||
config = lib.mkIf config.myConfig.x-input.enable {
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
xkb = {
|
||||
layout = "de";
|
||||
variant = "nodeadkeys";
|
||||
};
|
||||
config = lib.mkIf config.myConfig.x-input.enable {
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
xkb = {
|
||||
layout = "de";
|
||||
variant = "nodeadkeys";
|
||||
};
|
||||
|
||||
libinput = {
|
||||
enable = true;
|
||||
libinput = {
|
||||
enable = true;
|
||||
|
||||
touchpad = {
|
||||
accelProfile = "adaptive";
|
||||
naturalScrolling = true;
|
||||
disableWhileTyping = true;
|
||||
touchpad = {
|
||||
accelProfile = "adaptive";
|
||||
naturalScrolling = true;
|
||||
disableWhileTyping = true;
|
||||
};
|
||||
|
||||
mouse.accelProfile = "flat";
|
||||
};
|
||||
};
|
||||
|
||||
mouse.accelProfile = "flat";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue