16 lines
260 B
Nix
16 lines
260 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"];
|
|
};
|
|
}
|
|
|