mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-03-14 12:18:59 +00:00

A bunch of minor updates here, a bunch of minor changes there. All of the Nix changes is here for all the world to see.
10 lines
349 B
Nix
Executable File
10 lines
349 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; };
|
|
})
|
|
]
|