templates/direnv/flake.nix

27 lines
591 B
Nix
Raw Normal View History

2024-05-02 08:05:49 +00:00
{
description = "An empty devshell with direnv support";
inputs.nixpkgs.url = "github:auxolotl/nixpkgs/nixpkgs-unstable";
outputs =
{ nixpkgs, ... }:
let
2024-05-03 06:08:32 +00:00
forAllSystems =
function:
nixpkgs.lib.genAttrs [
"x86_64-linux"
"aarch64-linux"
"x86_64-darwin"
"aarch64-darwin"
] (system: function nixpkgs.legacyPackages.${system});
2024-05-02 08:05:49 +00:00
in
{
2024-05-03 06:08:32 +00:00
devShells = forAllSystems (pkgs: {
2024-05-03 06:09:43 +00:00
default = pkgs.mkShell {
packages = [ pkgs.hello ];
IN_SHELL = "yes!";
};
2024-05-03 06:08:32 +00:00
});
2024-05-02 08:05:49 +00:00
};
}