templates/direnv/flake.nix

24 lines
544 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: {
default = pkgs.mkShell { packages = [ pkgs.hello ]; };
});
2024-05-02 08:05:49 +00:00
};
}