Base minor restructure

This commit is contained in:
kat witch 2021-08-18 02:36:40 +01:00
parent b383c70492
commit 83fb02ddc6
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
4 changed files with 30 additions and 34 deletions

View file

@ -1,26 +0,0 @@
{ sources, system ? builtins.currentSystem, ... }@args:
let
overlay = self: super: {
nur = import sources.nur {
nurpkgs = self;
pkgs = self;
};
linuxPackagesFor = kernel: (super.linuxPackagesFor kernel).extend (_: ksuper: {
zfsUnstable = ksuper.zfsUnstable.overrideAttrs (old: { meta = old.meta // { broken = false; }; });
});
};
pkgs = import sources.nixpkgs {
overlays = [
(import (sources.arcexprs + "/overlay.nix"))
(import (sources.katexprs + "/overlay.nix"))
overlay
];
config = {
allowUnfree = true;
permittedInsecurePackages = [
"ffmpeg-3.4.8"
];
};
};
in pkgs