Skip to content

Instantly share code, notes, and snippets.

@TomMD
Created July 23, 2023 15:02
Show Gist options
  • Save TomMD/0d950753d13a33864e56d26217fec8d7 to your computer and use it in GitHub Desktop.
Save TomMD/0d950753d13a33864e56d26217fec8d7 to your computer and use it in GitHub Desktop.
Basic shell.nix useful for some Haskell dev work
let
unstable = import <nixos-unstable> {};
new = import <nixos-21.11> {};
in new.mkShell {
buildInputs = [
new.ghc
new.haskellPackages.haskell-language-server
unstable.neovim
new.zlib.dev
# unstable.terraform
# new.google-cloud-sdk
# new.dig
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment