1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-10 18:57:22 +00:00
home-manager/tests/modules/programs/atuin/example-settings.nix
2025-02-21 23:20:07 -06:00

25 lines
502 B
Nix

{
programs.atuin = {
enable = true;
settings = {
db_path = "~/.atuin-history.db";
dialect = "us";
auto_sync = true;
search-mode = "fulltext";
};
};
nmt.script = ''
assertFileContent \
home-files/.config/atuin/config.toml \
${
builtins.toFile "example-settings-expected.toml" ''
auto_sync = true
db_path = "~/.atuin-history.db"
dialect = "us"
search-mode = "fulltext"
''
}
'';
}