nixos/home/Ronin.nix

24 lines
483 B
Nix
Raw Normal View History

{ ... }:
{
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";
};
};
}