Skip to content

Commit 77e837d

Browse files
chore: run nixfmt on all nix files
1 parent 2866808 commit 77e837d

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Special thanks to @Sk7Str1p3, @mourogurt, @kaeeraa, @mctrxw for help with this flake and packages
22
{
33
description = ''
4-
Millennium - an open-source low-code modding framework to create,
4+
Millennium - an open-source low-code modding framework to create,
55
manage and use themes/plugins for the desktop Steam Client
66
'';
77

nix/millennium.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ pkgsi686Linux.stdenv.mkDerivation {
8686
8787
mkdir -p $out/lib/millennium
8888
cp libmillennium_x86.so $out/lib/millennium
89-
89+
9090
runHook postInstall
9191
'';
9292
NIX_CFLAGS_COMPILE = [

nix/python/core-utils.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{pkgs}:
1+
{ pkgs }:
22
pkgs.python311Packages.buildPythonPackage {
33
pname = "millennium-core-utils";
44
version = "git";
@@ -11,4 +11,4 @@ pkgs.python311Packages.buildPythonPackage {
1111
cp ${../../sdk/package.json} ./millennium/package.json
1212
cp ${../../sdk/README.md} ./millennium/README.md
1313
'';
14-
}
14+
}

nix/python/millennium.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{pkgs}:
1+
{ pkgs }:
22
pkgs.python311Packages.buildPythonPackage {
33
pname = "millennium";
44
version = "git";
@@ -11,4 +11,4 @@ pkgs.python311Packages.buildPythonPackage {
1111
cp ${../../sdk/package.json} ./millennium/package.json
1212
cp ${../../sdk/README.md} ./millennium/README.md
1313
'';
14-
}
14+
}

shell.nix

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
{pkgs ? import <nixpkgs>}:
1+
{
2+
pkgs ? import <nixpkgs>,
3+
}:
24
with pkgs;
35

46
mkShell {
@@ -9,4 +11,4 @@ mkShell {
911
nixfmt-rfc-style
1012
mypy
1113
];
12-
}
14+
}

0 commit comments

Comments
 (0)