mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
18 lines
346 B
Nix
18 lines
346 B
Nix
{
|
|
tree,
|
|
inputs,
|
|
...
|
|
}: let
|
|
overlays = import tree.overlays {inherit inputs tree;};
|
|
in
|
|
inputs.utils.lib.eachDefaultSystem (system: {
|
|
pkgs = import inputs.nixpkgs {
|
|
inherit system overlays;
|
|
config = {
|
|
allowUnfree = true;
|
|
permittedInsecurePackages = [
|
|
"olm-3.2.16"
|
|
];
|
|
};
|
|
};
|
|
})
|