15 lines
262 B
Nix
15 lines
262 B
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}: let
|
|
inherit (lib) mkIf;
|
|
adminShell = config.ooknet.host.admin.shell;
|
|
in {
|
|
config = mkIf (adminShell == "bash") {
|
|
programs.bash = {
|
|
enable = true;
|
|
};
|
|
environment.pathsToLink = ["/share/bash-completion"];
|
|
};
|
|
}
|