mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-29 11:36:16 +01:00
18 lines
285 B
Nix
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;
|
||
|
}
|