mirror of
https://github.com/nix-community/nix-direnv.git
synced 2025-11-08 19:46:11 +01:00
12 lines
368 B
Nix
12 lines
368 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 =
|
|
{ nixpkgs, flake-utils, ... }:
|
|
flake-utils.lib.eachDefaultSystem (system: {
|
|
devShell = import ./shell.nix { pkgs = nixpkgs.legacyPackages.${system}; };
|
|
});
|
|
}
|