Files
home-manager/tests/modules/programs/github-copilot-cli/config.nix
2026-04-29 16:37:13 -05:00

18 lines
493 B
Nix

{
programs.github-copilot-cli = {
enable = true;
settings = {
model = "claude-sonnet-4-5";
theme = "dark";
trusted_folders = [ "/home/user/projects" ];
};
};
nmt.script = ''
assertFileExists home-files/.copilot/config.json
assertFileContent home-files/.copilot/config.json ${./expected-config.json}
assertPathNotExists home-files/.copilot/mcp-config.json
assertFileNotRegex home-path/etc/profile.d/hm-session-vars.sh 'COPILOT_HOME'
'';
}