2020-04-06 12:55:58 +02:00
|
|
|
{ config, pkgs, ... }: {
|
2019-09-15 23:12:08 +02:00
|
|
|
config = {
|
|
|
|
services.sxhkd = {
|
|
|
|
enable = true;
|
|
|
|
|
2021-01-14 01:56:32 +01:00
|
|
|
package = pkgs.runCommandLocal "dummy-package" { } "mkdir $out" // {
|
|
|
|
outPath = "@sxhkd@";
|
|
|
|
};
|
|
|
|
|
2019-09-15 23:12:08 +02:00
|
|
|
keybindings = {
|
|
|
|
"super + a" = "run command a";
|
|
|
|
"super + b" = null;
|
|
|
|
"super + Shift + b" = "run command b";
|
|
|
|
};
|
|
|
|
|
|
|
|
extraConfig = ''
|
|
|
|
super + c
|
|
|
|
call command c
|
2020-02-02 00:39:17 +01:00
|
|
|
|
2019-09-15 23:12:08 +02:00
|
|
|
# comment
|
|
|
|
super + d
|
|
|
|
call command d
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
nmt.script = ''
|
2020-04-10 00:25:21 +02:00
|
|
|
sxhkdrc=home-files/.config/sxhkd/sxhkdrc
|
2019-09-15 23:12:08 +02:00
|
|
|
|
|
|
|
assertFileExists $sxhkdrc
|
|
|
|
|
|
|
|
assertFileContent $sxhkdrc ${./sxhkdrc}
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|