This commit is contained in:
Amy de Buitléir 2026-02-03 15:44:17 +00:00
parent 2b224e8e0e
commit 50210f3f88
3 changed files with 3 additions and 8 deletions

View file

@ -0,0 +1,22 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
devShells = rec {
default = pkgs.mkShell {
shellHook = ''
export FOO="bar"
'';
};
};
}
);
}