mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-12 06:19:00 +00:00
80cb28be86
* 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).
12 lines
308 B
Nix
Executable File
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;
|
|
};
|
|
})
|
|
]
|