Moving samhain to sway. Samhain should (now, untested) have vendor-reset as a kernel module on boot.

This commit is contained in:
kat witch 2021-01-10 15:29:53 +00:00 committed by kat
parent ef12b4a733
commit 5569e73aa9
9 changed files with 369 additions and 7 deletions

View file

@ -1,9 +1,11 @@
{ nixpkgs ? <nixpkgs>, ... }:
{ nixpkgs ? <nixpkgs>, self, super, ... }:
let
pkgs = import nixpkgs { };
callPackage = pkgs.lib.callPackageWith (pkgs // newpkgs);
newpkgs = { };
newpkgs = {
linuxPackagesFor = kernel: (super.linuxPackagesFor kernel).extend (_: ksuper: {
vendor-reset = (callPackage ./vendor-reset {kernel = ksuper.kernel;}).out;
});
};
in newpkgs