mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-21 00:49:52 +01:00
49 lines
1.4 KiB
Nix
49 lines
1.4 KiB
Nix
{
|
|
config,
|
|
pkgs-unstable,
|
|
...
|
|
}: let
|
|
inherit (pkgs-unstable) nu_scripts;
|
|
in {
|
|
programs.bash = {
|
|
# load the alias file for work
|
|
bashrcExtra = ''
|
|
alias_for_work=/etc/agenix/alias-for-work.bash
|
|
if [ -f $alias_for_work ]; then
|
|
. $alias_for_work
|
|
else
|
|
echo "No alias file found for work"
|
|
fi
|
|
'';
|
|
};
|
|
|
|
programs.nushell = {
|
|
# load the alias file for work
|
|
# the file must exist, otherwise nushell will complain about it!
|
|
#
|
|
# currently, nushell does not support conditional sourcing of files
|
|
# https://github.com/nushell/nushell/issues/8214
|
|
extraConfig = ''
|
|
source /etc/agenix/alias-for-work.nushell
|
|
|
|
# Directories in this constant are searched by the
|
|
# `use` and `source` commands.
|
|
const NU_LIB_DIRS = $NU_LIB_DIRS ++ ['${nu_scripts}/share/nu_scripts']
|
|
|
|
# completion
|
|
use custom-completions/git/git-completions.nu *
|
|
use custom-completions/glow/glow-completions.nu *
|
|
use custom-completions/just/just-completions.nu *
|
|
use custom-completions/make/make-completions.nu *
|
|
use custom-completions/man/man-completions.nu *
|
|
use custom-completions/nix/nix-completions.nu *
|
|
use custom-completions/cargo/cargo-completions.nu *
|
|
use custom-completions/zellij/zellij-completions.nu *
|
|
# alias
|
|
use aliases/git/git-aliases.nu *
|
|
use aliases/eza/eza-aliases.nu *
|
|
use aliases/bat/bat-aliases.nu *
|
|
'';
|
|
};
|
|
}
|