This commit is contained in:
Tao Tien 2024-04-20 18:47:52 -07:00
parent 635600ace2
commit 342673154d
5 changed files with 52 additions and 37 deletions

View file

@ -7,17 +7,17 @@
enable = true;
algorithm = "zstd";
};
nixpkgs.overlays = [
(final: prev: {
libinput = prev.libinput.overrideAttrs (old: {
patches =
(old.patches or [])
++ [
../extras/libinput-delay.patch
];
});
})
];
# nixpkgs.overlays = [
# (final: prev: {
# libinput = prev.libinput.overrideAttrs (old: {
# patches =
# (old.patches or [])
# ++ [
# ../extras/libinput-delay.patch
# ];
# });
# })
# ];
environment.systemPackages = with pkgs; [
# fw-ectool
@ -28,7 +28,7 @@
nix.buildMachines = [
{
hostName = "nocomputer";
systems = ["x86_64-linux"];
systems = ["x86_64-linux" "i686-linux"];
supportedFeatures = ["big-parallel"];
}
];