diff --git a/.envrc b/.envrc deleted file mode 100644 index b027ddb2..00000000 --- a/.envrc +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/env bash -# ^ added for shellcheck and file-type detection - -# Watch & reload direnv on change -cd devshell || exit -watch_file devshell.toml - -if [[ $(type -t use_flake) != function ]]; then - echo "ERROR: use_flake function missing." - echo "Please update direnv to v2.30.0 or later." - exit 1 -fi -use flake diff --git a/shell.nix b/shell.nix deleted file mode 100644 index d4175a18..00000000 --- a/shell.nix +++ /dev/null @@ -1,11 +0,0 @@ -let - unstable = import (fetchTarball https://github.com/nixos/nixpkgs/archive/nixos-unstable.tar.gz) { }; -in -{ nixpkgs ? import {} }: -with nixpkgs; mkShell { - buildInputs = [ - ansible - ansible-lint - ]; -} -