blob: 4ececfa3bb618339462b9ad50b91522aaf14d146 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{config, ...}: let
cfg = config.collinux.terminal.shells;
in {
imports = [
./bash.nix
];
programs.command-not-found.enable = false; # broken without nix-channels
users.users."${config.collinux.user.name}" = {
shell = cfg.defaultShell;
ignoreShellProgramCheck = true;
};
}
|