mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 05:43:50 +03:00
Merge pull request #17470 from layus/synaptics-conflict
Warn for conflict between synaptics and libinput
This commit is contained in:
commit
f044035a9e
@ -227,6 +227,14 @@ in {
|
|||||||
EndSection
|
EndSection
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
assertions = [
|
||||||
|
# already present in synaptics.nix
|
||||||
|
/* {
|
||||||
|
assertion = !config.services.xserver.synaptics.enable;
|
||||||
|
message = "Synaptics and libinput are incompatible, you cannot enable both (in services.xserver).";
|
||||||
|
} */
|
||||||
|
];
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -205,6 +205,13 @@ in {
|
|||||||
EndSection
|
EndSection
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
assertions = [
|
||||||
|
{
|
||||||
|
assertion = !config.services.xserver.libinput.enable;
|
||||||
|
message = "Synaptics and libinput are incompatible, you cannot enable both (in services.xserver).";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user