testing manjaro kernel

This commit is contained in:
Andrea Ciceri 2022-03-29 00:53:02 +02:00
parent 7ce23b1055
commit 257c019e6b
No known key found for this signature in database
GPG key ID: A1FC89532D1C5654
10 changed files with 155 additions and 72 deletions

View file

@ -1,7 +1,22 @@
final: prev: {
{ unstablePkgsInput }:
final: prev:
let
unstablePkgs = (import unstablePkgsInput {
system = prev.system;
}).pkgs;
in
{
# keep sources this first
# sources = prev.callPackage (import ./_sources/generated.nix) { };
customEmacs = prev.callPackage (import ./emacs) { };
amule = prev.callPackage (import ./amule) { };
digikam = unstablePkgs.digikam;
cura = unstablePkgs.cura;
firefox-unwrapped = unstablePkgs.firefox-unwrapped;
geoclue2 = unstablePkgs.geoclue2;
gnome = unstablePkgs.gnome;
# then, call packages with `final.callPackage`
}