Skip to content

Instantly share code, notes, and snippets.

@SomeoneSerge
Created June 19, 2023 15:01
Show Gist options
  • Save SomeoneSerge/f96a4bc80cd534741eaab23c41c88134 to your computer and use it in GitHub Desktop.
Save SomeoneSerge/f96a4bc80cd534741eaab23c41c88134 to your computer and use it in GitHub Desktop.
{
description = "A very basic flake";
outputs = { self, nixpkgs }: {
devShells.x86_64-linux.default = with nixpkgs.legacyPackages.x86_64-linux; mkShell {
shellHook = ''
read FLAKE_ROOT < <(
${lib.getExe nix} flake metadata --json | ${lib.getExe jq} .locked.path --raw-output
)
export FLAKE_ROOT
'';
};
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment