mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
26 lines
566 B
Nix
26 lines
566 B
Nix
{ sources, system ? builtins.currentSystem, ... }@args:
|
|
|
|
let
|
|
pkgs = import sources.nixpkgs {
|
|
overlays = [
|
|
(import ./nur { inherit sources; })
|
|
(import sources.emacs-overlay)
|
|
(import ./rustfmt)
|
|
(import ./katlib)
|
|
(import ./katpkgs)
|
|
/* # TODO: implement these
|
|
(import ./vimrc)
|
|
*/
|
|
] ++ (map (path: import "${path}/overlay.nix") [
|
|
sources.arcexprs
|
|
sources.anicca
|
|
]);
|
|
config = {
|
|
allowUnfree = true;
|
|
permittedInsecurePackages = [
|
|
"ffmpeg-3.4.8"
|
|
];
|
|
};
|
|
};
|
|
in
|
|
pkgs
|