This commit is contained in:
Amy de Buitléir 2025-10-04 19:58:47 +01:00
parent 9361cdf718
commit 9025cf3d49
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"
'';
};
};
}
);
}