dotfiles/shell.nix

14 lines
311 B
Nix
Raw Normal View History

2022-03-10 12:25:23 +00:00
let nixpkgs = import <nixpkgs> { };
in with nixpkgs;
2022-03-04 09:12:08 +00:00
stdenv.mkDerivation {
name = "legacy_shell";
buildInputs = [
(pkgs.writeShellScriptBin "nix-experimental" ''
exec ${pkgs.nixUnstable}/bin/nix --experimental-features "nix-command flakes" "$@"
'')
cacert
git
];
2022-03-10 12:25:23 +00:00
shellHook = "";
2022-03-04 09:12:08 +00:00
}