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 20, 2024
1 parent a74ef19 commit 0b53633
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
14 changes: 7 additions & 7 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)
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 0b53633

Please sign in to comment.