mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-05-02 18:19:11 +00:00
24 lines
392 B
Nix
24 lines
392 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
programs.kando = {
|
||
|
enable = true;
|
||
|
|
||
|
settings = {
|
||
|
hello = "there";
|
||
|
a = "bc";
|
||
|
_1 = 23;
|
||
|
};
|
||
|
|
||
|
menuSettings = {
|
||
|
shortcut = "Ctrl+Space";
|
||
|
shortcutId = "example-menu";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileExists home-files/.config/kando/config.json
|
||
|
assertFileExists home-files/.config/kando/menus.json
|
||
|
'';
|
||
|
}
|