1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-03 15:41:02 +01:00
home-manager/tests/modules/programs/kickoff/example-config.nix
2025-04-28 09:47:38 -05:00

26 lines
535 B
Nix

{
programs.kickoff = {
enable = true;
settings = {
padding = 100;
font_size = 32;
search.show_hidden_files = false;
history.decrease_interval = 48;
keybinding = {
paste = [ "ctrl+v" ];
execute = [
"KP_Enter"
"Return"
];
complete = [ "Tab" ];
};
};
};
nmt.script = ''
assertFileExists home-files/.config/kickoff/config.toml
assertFileContent home-files/.config/kickoff/config.toml \
${./example-config.toml}
'';
}