Remove *.nix files

This commit is contained in:
teutat3s 2023-05-04 17:38:30 +02:00
parent 8e959cf895
commit 859734cd31
Signed by: teutat3s
GPG key ID: 18DAE600A6BBE705
2 changed files with 0 additions and 24 deletions

13
.envrc
View file

@ -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

View file

@ -1,11 +0,0 @@
let
unstable = import (fetchTarball https://github.com/nixos/nixpkgs/archive/nixos-unstable.tar.gz) { };
in
{ nixpkgs ? import <nixpkgs> {} }:
with nixpkgs; mkShell {
buildInputs = [
ansible
ansible-lint
];
}