mirror of
https://github.com/js0ny/dotfiles.git
synced 2026-03-22 10:42:42 +00:00
16 lines
245 B
Nix
16 lines
245 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
aliasCfg = import ./aliases.nix {inherit pkgs config lib;};
|
|
in {
|
|
programs.bash = {
|
|
enable = true;
|
|
shellAliases = aliasCfg.aliases;
|
|
bashrcExtra = ''
|
|
${aliasCfg.posixFx}
|
|
'';
|
|
};
|
|
}
|