kickoff: add module (#6918)

This commit is contained in:
Aguirre Matteo 2025-04-28 14:47:38 +00:00 committed by GitHub
parent be7cf1709b
commit 69c60b035e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 100 additions and 0 deletions

View file

@ -0,0 +1 @@
{ kickoff-example-config = ./example-config.nix; }

View file

@ -0,0 +1,26 @@
{
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}
'';
}

View file

@ -0,0 +1,13 @@
font_size = 32
padding = 100
[history]
decrease_interval = 48
[keybinding]
complete = ["Tab"]
execute = ["KP_Enter", "Return"]
paste = ["ctrl+v"]
[search]
show_hidden_files = false