mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
Compatibility, bringing Sumireko into the fold. Deprecate katexprs.
This commit is contained in:
parent
efae399c70
commit
40edeef897
39 changed files with 879 additions and 175 deletions
27
overlays/darwin.nix
Normal file
27
overlays/darwin.nix
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue