Skip to content

Commit 92cd0e3

Browse files
author
David Arnold
committed
fmt
1 parent 4484300 commit 92cd0e3

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{ nixpkgs ? import ./nix/nixpkgs.nix
22
, system ? builtins.currentSystem
3-
, overlays ? []
3+
, overlays ? [ ]
44
}:
55
import nixpkgs {
66
inherit system;

mkDevShell/options.nix

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ let
4848

4949
opCat = { name, value }:
5050
let
51-
opCmd = { name, help, ...}:
51+
opCmd = { name, help, ... }:
5252
let
5353
len = maxCommandLength - (builtins.stringLength name);
5454
in
@@ -57,7 +57,7 @@ let
5757
else
5858
"${pad name len} - ${help}";
5959
in
60-
"\n[${name}]\n" + builtins.concatStringsSep "\n" (map opCmd value);
60+
"\n[${name}]\n" + builtins.concatStringsSep "\n" (map opCmd value);
6161
in
6262
builtins.concatStringsSep "\n" (map opCat commandByCategoriesSorted)
6363
;
@@ -226,7 +226,8 @@ in
226226
];
227227

228228
packages =
229-
builtins.filter (x: x != null)
229+
builtins.filter
230+
(x: x != null)
230231
(map (x: x.package) config.commands);
231232
};
232233
}

0 commit comments

Comments
 (0)