Skip to content

Commit

Permalink
style: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
isabelroses committed Dec 8, 2024
1 parent 49876c7 commit 42bfc19
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
9 changes: 6 additions & 3 deletions modules/nixos/environment/paths.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ let
in
{
# if a given shell is enabled, add the corresponding completion paths
environment.pathsToLink = [
"/share/bash-completion"
] ++ optional cfg.zsh.enable "/share/zsh" ++ optional cfg.fish.enable "/share/fish";
environment.pathsToLink =
[
"/share/bash-completion"
]
++ optional cfg.zsh.enable "/share/zsh"
++ optional cfg.fish.enable "/share/fish";
}
3 changes: 2 additions & 1 deletion parts/lib/helpers.nix
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,8 @@ let
":" + (builtins.toString port)
else
":" + port
}/".pushInsteadOf = "${alias}:";
}/".pushInsteadOf =
"${alias}:";
};

/**
Expand Down

0 comments on commit 42bfc19

Please sign in to comment.