flake: use nixfmt-rfc-style

This commit is contained in:
Artur Manuel 2025-04-02 21:06:44 +01:00
commit 3307e8259d
Signed by: amadaluzia
SSH key fingerprint: SHA256:ubvwT66gNUKSsgSzEb2UQnX8pzTq5N+r8eRVYGJJm4Q
13 changed files with 398 additions and 167 deletions

View file

@ -1,6 +1,5 @@
eval "$(@starshipPath@ init zsh)"
eval "$(@zoxidePath@ init zsh)"
eval "$(@zoxidePath@ init zsh --cmd j)"
source "@zsh-deferPath@"

View file

@ -1,4 +1,18 @@
{ symlinkJoin, zsh, makeWrapper, inputs, system, zoxide, eza, zsh-fzf-tab, zsh-defer, zsh-autosuggestions, zsh-syntax-highlighting, lib, fzf }:
{
symlinkJoin,
zsh,
makeWrapper,
inputs,
system,
zoxide,
eza,
zsh-fzf-tab,
zsh-defer,
zsh-autosuggestions,
zsh-syntax-highlighting,
lib,
fzf,
}:
symlinkJoin {
name = "amadaluzian-zsh";
paths = [
@ -15,7 +29,9 @@ symlinkJoin {
--subst-var-by zsh-deferPath ${zsh-defer}/share/zsh-defer/zsh-defer.plugin.zsh \
--subst-var-by zsh-syntax-highlightingPath ${zsh-syntax-highlighting}/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh \
--subst-var-by zsh-autosuggestionsPath ${zsh-autosuggestions}/share/zsh-autosuggestions/zsh-autosuggestions.zsh \
--subst-var-by starshipPath ${lib.getExe' inputs.self.packages.${system}.amadaluzian-starship "starship"} \
--subst-var-by starshipPath ${
lib.getExe' inputs.self.packages.${system}.amadaluzian-starship "starship"
} \
--subst-var-by zoxidePath ${lib.getExe' zoxide "zoxide"} \
--subst-var-by fzfPath ${lib.getExe' fzf "fzf"} \