nixos/home/Northstar.nix

24 lines
488 B
Nix
Raw Normal View History

{ ... }:
2024-07-30 15:06:34 +01:00
{
imports = [
./personal.nix
./desktop/plasma/default.nix
2024-07-08 11:24:43 +01:00
];
programs.plasma = {
# input.touchpads = [
# {
# disableWhileTyping = true;
# enable = true;
# name = "SYNA32AA:00 06CB:CE17 Touchpad";
# naturalScroll = true;
# productId = "52759";
# tapToClick = true;
# vendorId = "1739";
# }
# ];
configFile = {
bluedevilglobalrc.Global.launchState.value = "disable";
};
};
}