aboutsummaryrefslogtreecommitdiff
path: root/modules/terminal/nixos/default.nix
blob: 8118c63f31fb7724e002b12464d5fff85646914a (plain)
1
2
3
4
5
6
7
8
9
10
{config, ...}: let
  cfg = config.collinux.terminal.shells;
in {
  programs.command-not-found.enable = false; # broken without nix-channels

  users.users."${config.collinux.user.name}" = {
    shell = cfg.defaultShell;
    ignoreShellProgramCheck = true;
  };
}