From 3b11816113842018adc572eddc076719183f1cc7 Mon Sep 17 00:00:00 2001 From: haruki7049 Date: Wed, 2 Jul 2025 15:15:39 +0900 Subject: [PATCH 1/2] chore(editorconfig): Add --- .editorconfig | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .editorconfig 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 From 0f8d4256cd3023fbcc40afc39bc67ee07b05cae9 Mon Sep 17 00:00:00 2001 From: haruki7049 Date: Wed, 2 Jul 2025 15:20:37 +0900 Subject: [PATCH 2/2] style: nix fmt --- flake.nix | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) 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 +}