mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 06:19:00 +00:00
13 lines
383 B
Nix
Executable File
13 lines
383 B
Nix
Executable File
[
|
|
(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; });
|
|
nur.foo-dogsquared = import (fetchTarball
|
|
"https://github.com/foo-dogsquared/nur-packages/archive/develop.tar.gz") {
|
|
inherit pkgs;
|
|
};
|
|
})
|
|
]
|