aboutsummaryrefslogtreecommitdiffstats
path: root/users/hanna/configs/claude.nix
blob: e5ebf2873141ad1db7b78810e17eac01f6d83263 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  xdg.config.files."claude/settings.json".text = builtins.toJSON {
    theme = "dark";
    editorMode = "normal";
    awaySummaryEnabled = false;
    promptSuggestionEnabled = false;
    workflowKeywordTriggerEnabled = false;
    preferredNotifChannel = "terminal_bell";
    terminalProgressBarEnabled = false;
    askUserQuestionTimeout = "60s";
    inputNeededNotifEnabled = true;
    remoteControlAtStartup = false;
    useAutoModeDuringPlan = true;
    autoCompactEnabled = true;
    switchModelsOnFlag = true;
  };
}