mirror of
https://github.com/nix-community/nix-direnv.git
synced 2025-11-15 15:02:51 +01:00
12 lines
344 B
Nix
12 lines
344 B
Nix
{
|
|
description = "A very basic flake";
|
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs";
|
|
inputs.flake-utils.url = "github:numtide/flake-utils";
|
|
|
|
outputs = { self, nixpkgs, flake-utils }:
|
|
flake-utils.lib.eachDefaultSystem (system: {
|
|
devShell = import ./shell.nix {
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
};
|
|
});
|
|
}
|