add shell.nix and make it work on nixos

This commit is contained in:
Attila Lendvai 2021-02-14 10:05:02 +01:00
parent 527bbf214c
commit 63806ccfe5
2 changed files with 20 additions and 1 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
set -e

19
default.nix Normal file
View File

@ -0,0 +1,19 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
coreutils posix_man_pages bash-completion less
gitFull diffutils
gnumake which
ncurses perl python2 python3
# keep this line if you use bash
bashInteractive
];
shellHook =
''
alias ..='cd ..'
alias ...='cd ../..'
'';
}