Skip to content

Commit 38fe40a

Browse files
Merge pull request #224 from haruki7049/add-editorconfig
chore(editorconfig): Add
2 parents 19edac4 + 0f8d425 commit 38fe40a

File tree

2 files changed

+12
-13
lines changed

2 files changed

+12
-13
lines changed

.editorconfig

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# top-most EditorConfig file
2+
root = true
3+
4+
# Unix-style newlines with a newline ending every file
5+
[*]
6+
end_of_line = lf
7+
insert_final_newline = true

flake.nix

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,8 @@
22
description = "Flake for SimulaVR/Simula";
33

44
nixConfig = {
5-
extra-substituters = [
6-
"https://simula.cachix.org"
7-
];
8-
extra-trusted-public-keys = [
9-
"simula.cachix.org-1:Sr0SD5FIjc8cUVIeBHl8VJswQEJOBIE6u3wpmjslGBA="
10-
];
5+
extra-substituters = [ "https://simula.cachix.org" ];
6+
extra-trusted-public-keys = [ "simula.cachix.org-1:Sr0SD5FIjc8cUVIeBHl8VJswQEJOBIE6u3wpmjslGBA=" ];
117
};
128

139
inputs = {
@@ -324,7 +320,7 @@
324320
makeWrapper $out/bin/simula-unwrapped $out/bin/simula \
325321
--prefix PATH : ${lib.makeBinPath passthru.simulaRuntimePrograms} \
326322
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath passthru.simulaRuntimeLibs}
327-
323+
328324
cat > $out/bin/simula-monado-service << 'EOF'
329325
${simulaMonadoServiceContent}
330326
EOF
@@ -353,11 +349,7 @@
353349
};
354350

355351
packages = {
356-
inherit
357-
simula
358-
godot-haskell
359-
godot-haskell-plugin
360-
;
352+
inherit simula godot-haskell godot-haskell-plugin;
361353
default = simula;
362354
};
363355

@@ -386,4 +378,4 @@
386378
};
387379
};
388380
};
389-
}
381+
}

0 commit comments

Comments
 (0)