Set trackpad for Tone to natural scrolling

Add typescript (for tsc and tsserver) to javascript installed packages
This commit is contained in:
Evie Litherland-Smith 2024-06-27 13:22:02 +01:00
parent b494229697
commit 94130a9c9c
2 changed files with 10 additions and 2 deletions

View file

@ -128,7 +128,12 @@
in
home-manager.lib.homeManagerConfiguration {
pkgs = import nixpkgs {inherit system;};
modules = defaultModules ++ [./work.nix];
modules =
defaultModules
++ [
./work.nix
{programs.plasma.configFile.kcminputrc."Libinput/1160/4132/DELL0A21:00 0488:1024 Touchpad".NaturalScroll = true;}
];
extraSpecialArgs = defaultExtraSpecialArgs {inherit hostname system;};
};
"elitherl@Scorch" = let

View file

@ -1,4 +1,7 @@
{pkgs, ...}: {
home.packages = with pkgs;
with nodePackages; [nodejs];
with nodePackages; [
nodejs
typescript
];
}