mirror of
https://github.com/blahai/nyx.git
synced 2025-02-23 21:25:09 +00:00
18 lines
348 B
Nix
18 lines
348 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: let
|
|
inherit (lib.meta) getExe;
|
|
|
|
bashPrompt = ''
|
|
eval "$(${getExe pkgs.starship} init bash)"
|
|
'';
|
|
in {
|
|
# home-manager is so strange and needs these declared multiple times
|
|
programs = {
|
|
fish.enable = config.olympus.programs.fish.enable;
|
|
zsh.enable = config.olympus.programs.zsh.enable;
|
|
};
|
|
}
|