diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..850f463 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,7 @@ +# top-most EditorConfig file +root = true + +# Unix-style newlines with a newline ending every file +[*] +end_of_line = lf +insert_final_newline = true diff --git a/flake.nix b/flake.nix index 6e8a330..65d7f8d 100644 --- a/flake.nix +++ b/flake.nix @@ -2,12 +2,8 @@ description = "Flake for SimulaVR/Simula"; nixConfig = { - extra-substituters = [ - "https://simula.cachix.org" - ]; - extra-trusted-public-keys = [ - "simula.cachix.org-1:Sr0SD5FIjc8cUVIeBHl8VJswQEJOBIE6u3wpmjslGBA=" - ]; + extra-substituters = [ "https://simula.cachix.org" ]; + extra-trusted-public-keys = [ "simula.cachix.org-1:Sr0SD5FIjc8cUVIeBHl8VJswQEJOBIE6u3wpmjslGBA=" ]; }; inputs = { @@ -324,7 +320,7 @@ makeWrapper $out/bin/simula-unwrapped $out/bin/simula \ --prefix PATH : ${lib.makeBinPath passthru.simulaRuntimePrograms} \ --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath passthru.simulaRuntimeLibs} - + cat > $out/bin/simula-monado-service << 'EOF' ${simulaMonadoServiceContent} EOF @@ -353,11 +349,7 @@ }; packages = { - inherit - simula - godot-haskell - godot-haskell-plugin - ; + inherit simula godot-haskell godot-haskell-plugin; default = simula; }; @@ -386,4 +378,4 @@ }; }; }; -} \ No newline at end of file +}