mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
24 lines
541 B
Nix
24 lines
541 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)
|
|
(import ./dns { inherit sources; })
|
|
] ++ (map (path: import "${path}/overlay.nix") [
|
|
sources.arcexprs
|
|
sources.anicca
|
|
]);
|
|
config = {
|
|
allowUnfree = true;
|
|
permittedInsecurePackages = [
|
|
"ffmpeg-3.4.8"
|
|
];
|
|
};
|
|
};
|
|
in
|
|
pkgs
|