Merge pull request #70166 from kcalvinalvin/plasma-cmt-fix

nixos/cmt: Update error message for cmt
This commit is contained in:
worldofpeace 2019-10-01 12:42:08 +00:00 committed by GitHub
commit 4b7cac98a1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -47,7 +47,12 @@ in {
assertions = [
{
assertion = !config.services.xserver.libinput.enable;
message = "cmt and libinput are incompatible, you cannot enable both (in services.xserver).";
message = ''
cmt and libinput are incompatible, meaning you cannot enable them both.
To use cmt you need to disable libinput with `services.xserver.libinput.enable = false`
If you haven't enabled it in configuration.nix, it's enabled by default on a
different xserver module.
'';
}
];
};