Skip to content

Commit

Permalink
chore: fix missing key
Browse files Browse the repository at this point in the history
  • Loading branch information
GTrunSec committed Feb 20, 2024
1 parent a74ef19 commit 62edec1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
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)
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 62edec1

Please sign in to comment.