dotfiles/shell.nix
Cyryl Płotnicki 4dc3e0773f try to fix ci
2021-06-19 23:59:00 +01:00

17 lines
343 B
Nix

let
nixpkgs = import <nixpkgs> {};
in
with nixpkgs;
stdenv.mkDerivation {
name = "legacy_shell";
buildInputs = [
(pkgs.writeShellScriptBin "nix-experimental" ''
exec ${pkgs.nixUnstable}/bin/nix --experimental-features "nix-command flakes" "$@"
'')
cacert
git
];
shellHook = ''
'';
}