mirror of
https://github.com/blahai/nyx.git
synced 2025-02-23 21:05:09 +00:00
19 lines
348 B
Nix
19 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;
|
||
|
};
|
||
|
}
|