Skip to content

Commit 29d59a1

Browse files
style: treefmt
1 parent b4da0ee commit 29d59a1

1 file changed

Lines changed: 15 additions & 5 deletions

File tree

flake.nix

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,24 @@
33

44
inputs.flake-utils.url = "github:numtide/flake-utils";
55

6-
outputs = { self, nixpkgs, flake-utils }:
7-
flake-utils.lib.eachDefaultSystem (system:
6+
outputs =
7+
{
8+
self,
9+
nixpkgs,
10+
flake-utils,
11+
}:
12+
flake-utils.lib.eachDefaultSystem (
13+
system:
814
let
915
pkgs = import nixpkgs {
1016
inherit system;
1117

12-
config = { allowUnfree = true; };
18+
config = {
19+
allowUnfree = true;
20+
};
1321
};
14-
in {
22+
in
23+
{
1524
devShells = {
1625
default = pkgs.mkShell {
1726
packages = with pkgs; [
@@ -59,5 +68,6 @@
5968

6069
};
6170
};
62-
});
71+
}
72+
);
6373
}

0 commit comments

Comments
 (0)