nixos-config/packages/default.nix
Gabriel Arazas 80cb28be86 Update the modules
* Python module now has an additional option for the package to be
installed for easier installation of other versions.
* The Python module also has a restriction of installing version 3 and
above.
* The JavaScript module has been moved into a more general module for
web-based tools (including PHP).
2020-10-27 16:33:47 +08:00

12 lines
308 B
Nix
Executable File

[
(self: super:
with super; {
veikk-linux-driver =
(callPackage ./veikk-driver.nix { kernel = pkgs.linux_5_8; });
nur.foo-dogsquared = import (fetchTarball
"https://github.com/foo-dogsquared/nur-packages/archive/master.tar.gz") {
inherit pkgs;
};
})
]