Move misc files into separate dir

This commit is contained in:
Vili Sinervä 2024-05-30 21:51:40 +03:00
parent c834b39e9c
commit 62fcf1f77f
No known key found for this signature in database
GPG key ID: DF8FEAF54EFAC996
3 changed files with 2 additions and 2 deletions

View file

@ -73,7 +73,7 @@ in
../vili.nix ../vili.nix
../desktop.nix ../desktop.nix
../development.nix ../development.nix
./libinput.nix ../misc/libinput.nix
]; ];
disabledModules = [ "services/x11/hardware/libinput.nix" ]; disabledModules = [ "services/x11/hardware/libinput.nix" ];
@ -82,7 +82,7 @@ in
(final: prev: (final: prev:
{ {
moonlight-qt = prev.moonlight-qt.overrideAttrs (old: { moonlight-qt = prev.moonlight-qt.overrideAttrs (old: {
patches = (old.patches or []) ++ [ ./mouse-accel.patch ]; patches = (old.patches or []) ++ [ ../misc/mouse-accel.patch ];
}); });
}) })
]; ];