fix broken system w default.nix

This commit is contained in:
Noah Masur 2022-01-22 17:38:36 -05:00
parent 7d52ec7286
commit c14702c9ee
3 changed files with 11 additions and 1 deletions

1
.envrc Normal file
View File

@ -0,0 +1 @@
use nix

View File

@ -1 +1,5 @@
{ }
# This file does nothing but call configuration.nix
# It is required when in a shell.nix environment
{ ... }: {
imports = [ ./configuration.nix ];
}

5
shell.nix Normal file
View File

@ -0,0 +1,5 @@
# Environment with formatting tools for editing these files
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
nativeBuildInputs = [ pkgs.buildPackages.stylua pkgs.buildPackages.nixfmt ];
}