Skip to content

Commit a3dedd7

Browse files
style(fmt): ran nix fmt
It was not letting me push.
1 parent 7708455 commit a3dedd7

2 files changed

Lines changed: 10 additions & 8 deletions

File tree

nix/checks/default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
{ ... }:
1+
_:
22
{
33
# Adds all packages as checks to the flake:
44
perSystem =
55
{ self', lib, ... }:
66
{
7-
checks = lib.mapAttrs (name: value: value) self'.packages;
7+
checks = lib.mapAttrs (_name: value: value) self'.packages;
88
};
99
}

nix/scripts/watch/default.nix

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,14 @@ _: {
88
}:
99
let
1010
name = "watch";
11-
runtimeDependencies = (with pkgs; [
12-
nodemon
13-
git
14-
]) ++ (with self'.packages; [
15-
install
16-
]);
11+
runtimeDependencies =
12+
(with pkgs; [
13+
nodemon
14+
git
15+
])
16+
++ (with self'.packages; [
17+
install
18+
]);
1719
in
1820
{
1921
packages.${name} = pkgs.stdenv.mkDerivation rec {

0 commit comments

Comments
 (0)