mirror of
https://git.oat.zone/dark-firepit/dotfiles
synced 2024-11-23 02:12:26 +01:00
18 lines
356 B
Nix
18 lines
356 B
Nix
|
{ pkgs ? import <nixpkgs> {} }:
|
||
|
|
||
|
with pkgs;
|
||
|
let nixBin =
|
||
|
writeShellScriptBin "nix" ''
|
||
|
${nixFlakes}/bin/nix --option experimental-features "nix-command flakes" "$@"
|
||
|
'';
|
||
|
in mkShell {
|
||
|
buildInputs = [
|
||
|
git
|
||
|
nix-zsh-completions
|
||
|
];
|
||
|
shellHook = ''
|
||
|
export FLAKE="$(pwd)"
|
||
|
export PATH="$FLAKE/bin:${nixBin}/bin:$PATH"
|
||
|
'';
|
||
|
}
|