Skip to content

Commit

Permalink
feat(nix): enable yazi for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
sbulav committed Feb 3, 2024
1 parent 053a6d8 commit ba1ec59
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
4 changes: 2 additions & 2 deletions fish/config.fish
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Append paths
set -a PATH "$HOME/bin/" "$HOME/.local/bin" "/opt/homebrew/bin" "$HOME/./go/bin/" "$HOME/Library/Python/3.8/bin/"
set -a PATH "$HOME/bin/" "$HOME/.local/bin" "/opt/homebrew/bin" "$HOME/./go/bin/"

# Initialize FZF keybindings
fzf_key_bindings
Expand Down Expand Up @@ -57,7 +57,7 @@ set -gx FZF_ALT_C_COMMAND 'fd --type directory \
--exclude "Library" \
--exclude "Music" '

set -gx FZF_ALT_T_COMMAND 'fd --type file \
set -gx FZF_CTRL_T_COMMAND 'fd --type file \
--exclude ".git" \
--exclude "venv*" \
--exclude "*node_modules*" \
Expand Down
10 changes: 5 additions & 5 deletions nix/modules/nixos/suites/common/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ in {
net.enable = true;
};
custom.cli-apps = {
atuin.enable = true;
neovim.enable = true;
lf.enable = true;
tmux.enable = true;
yazi.enable = false;
atuin.enable = lib.mkDefault true;
neovim.enable = lib.mkDefault true;
lf.enable = lib.mkDefault true;
tmux.enable = lib.mkDefault true;
yazi.enable = lib.mkDefault false;
};
};
}
4 changes: 4 additions & 0 deletions nix/systems/x86_64-linux/nz/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
suites.desktop.enable = true;
suites.develop.enable = true;

custom.cli-apps = {
yazi.enable = true;
};

# ======================== DO NOT CHANGE THIS ========================
system.stateVersion = "23.11";
# ======================== DO NOT CHANGE THIS ========================
Expand Down

0 comments on commit ba1ec59

Please sign in to comment.