Set trackpad for Tone to natural scrolling
Add typescript (for tsc and tsserver) to javascript installed packages
This commit is contained in:
parent
b494229697
commit
94130a9c9c
|
@ -128,7 +128,12 @@
|
||||||
in
|
in
|
||||||
home-manager.lib.homeManagerConfiguration {
|
home-manager.lib.homeManagerConfiguration {
|
||||||
pkgs = import nixpkgs {inherit system;};
|
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;};
|
extraSpecialArgs = defaultExtraSpecialArgs {inherit hostname system;};
|
||||||
};
|
};
|
||||||
"elitherl@Scorch" = let
|
"elitherl@Scorch" = let
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
home.packages = with pkgs;
|
home.packages = with pkgs;
|
||||||
with nodePackages; [nodejs];
|
with nodePackages; [
|
||||||
|
nodejs
|
||||||
|
typescript
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue