nixos-config/packages/default.nix

10 lines
349 B
Nix
Raw Normal View History

2020-08-16 08:33:44 +00:00
[
(self: super: with super; {
# Add packages from the unstable channel with `pkgs.unstable.$PKG`.
veikk-linux-driver = (callPackage ./veikk-driver.nix { kernel = pkgs.linux_5_8; });
2020-09-07 10:36:02 +00:00
nur.foo-dogsquared = import (
fetchTarball "https://github.com/foo-dogsquared/nur-packages/archive/develop.tar.gz"
) { inherit pkgs; };
2020-08-16 08:33:44 +00:00
})
]