dotfiles/nixos/common/nixpkgs.nix
Magic_RB 519d7b3841
Fill out omen, toothpick and heater
Signed-off-by: Magic_RB <magic_rb@redalder.org>
2023-06-16 16:08:01 +02:00

18 lines
285 B
Nix

{ inputs', lib, ... }:
let
inherit (lib)
flip
mapAttrs;
in
{
nix.registry =
flip mapAttrs inputs'
(
n: flake: {inherit flake;}
);
nix.settings = {
experimental-features = [ "flakes" "nix-command" ];
};
nixpkgs.config.allowUnfree = true;
}