Evie Litherland-Smith
4005eff6ac
Some issue with a missing library, perhaps a nixpkgs mismatch issue?
24 lines
483 B
Nix
24 lines
483 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./work.nix
|
|
./desktop/plasma/default.nix
|
|
];
|
|
programs.plasma = {
|
|
# input.touchpads = [
|
|
# {
|
|
# disableWhileTyping = true;
|
|
# enable = true;
|
|
# name = "DELL0A21:00 0488:1024 Touchpad";
|
|
# naturalScroll = true;
|
|
# productId = "1024";
|
|
# tapToClick = true;
|
|
# vendorId = "0488";
|
|
# }
|
|
# ];
|
|
configFile = {
|
|
bluedevilglobalrc.Global.launchState.value = "disable";
|
|
};
|
|
};
|
|
}
|