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