1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-03 05:23:32 +02:00
home-manager/tests/modules/services/sxhkd/configuration.nix
2019-09-17 21:42:05 +02:00

32 lines
538 B
Nix

{ config, ... }:
{
config = {
services.sxhkd = {
enable = true;
keybindings = {
"super + a" = "run command a";
"super + b" = null;
"super + Shift + b" = "run command b";
};
extraConfig = ''
super + c
call command c
# comment
super + d
call command d
'';
};
nmt.script = ''
local sxhkdrc=home-files/.config/sxhkd/sxhkdrc
assertFileExists $sxhkdrc
assertFileContent $sxhkdrc ${./sxhkdrc}
'';
};
}