Replace lorri with nix-direnv

This commit is contained in:
2021-09-29 12:09:36 +02:00
parent 8e44e20e4c
commit 55b4aba216
4 changed files with 17 additions and 8 deletions
+11
View File
@@ -0,0 +1,11 @@
{ config, lib, pkgs, ... }:
with pkgs;
{
nixpkgs.overlays = [
(self: super: {
nix-direnv = super.nix-direnv.override { enableFlakes = true; };
})
];
}