Compatibility, bringing Sumireko into the fold. Deprecate katexprs.

This commit is contained in:
kat 2022-04-12 13:25:56 +01:00 committed by kat
parent efae399c70
commit 40edeef897
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
39 changed files with 879 additions and 175 deletions

27
overlays/darwin.nix Normal file
View file

@ -0,0 +1,27 @@
{ inputs, system ? builtins.currentSystem, ... }@args:
let
pkgs = import inputs.nixpkgs-darwin {
inherit system;
overlays = [
(import ./nur { inherit inputs; })
(import inputs.emacs-overlay)
(import ./dns { inherit inputs; })
(import ./local)
(import ./lib)
] ++ (map (path: import "${path}/overlay.nix") [
inputs.arcexprs
inputs.anicca
]);
config = {
allowUnfree = true;
allowBroken = true;
allowUnsupportedSystem = true;
permittedInsecurePackages = [
"ffmpeg-3.4.8"
"ffmpeg-2.8.17"
];
};
};
in
pkgs