Skip to content

Commit

Permalink
fix: add missing key
Browse files Browse the repository at this point in the history
  • Loading branch information
GTrunSec committed Feb 21, 2024
1 parent a74ef19 commit bc140b5
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 12 deletions.
18 changes: 9 additions & 9 deletions local/lock/flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/errors/requiredInputsLazily.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ super, lib }:
inputs: _pop: listInputs:
inputs: popName: listInputs:
let
getRequiredInput = key: (super.requiredInputs inputs "test" [ key ]).${key};
getRequiredInput = key: (super.requiredInputs inputs popName [ key ]).${key};
in
lib.genAttrs listInputs (name: getRequiredInput name)
2 changes: 1 addition & 1 deletion src/lib/omnibus/inputsToPaths.nix
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ let
inputs:
l.pipe inputs [
(l.filterAttrs (_: v: l.isAttrs v && (v ? sourceInfo.outPath || v ? outPath)))
(l.mapAttrs (_: v: v.sourceInfo.outPath or v.outPath or v.path))
(l.mapAttrs (_: v: v.outPath or v.sourceInfo.outPath or v.path))
(l.mapAttrs (
_: v: if lib.strings.isStorePath v then getTopLevelPath (toString v) else [ ]
))
Expand Down
3 changes: 3 additions & 0 deletions units/nixos/homeProfiles/presets/starship/starship.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@ add_newline = true

[character]
success_symbol = "[λ](bold blue)"

[git_status]
ignore_submodules = true

0 comments on commit bc140b5

Please sign in to comment.