nix/misc/nix.nix

12 lines
255 B
Nix
Raw Normal View History

2024-07-04 01:14:24 +02:00
{ pkgs, ... }:
2024-07-04 01:13:59 +02:00
{
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nixpkgs.config.permittedInsecurePackages = [
"freeimage-unstable-2021-11-01"
];
2024-07-04 01:14:24 +02:00
nixpkgs.overlays = import ../pkgs pkgs;
2024-07-04 01:13:59 +02:00
nixpkgs.config.allowUnfree = true;
}