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