home-manager/tests/modules/services/sxhkd/configuration.nix

34 lines
637 B
Nix
Raw Normal View History

2020-04-06 10:55:58 +00:00
{ config, pkgs, ... }: {
2019-09-15 21:12:08 +00:00
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
2020-02-01 23:39:17 +00:00
2019-09-15 21:12:08 +00:00
# comment
super + d
call command d
'';
};
2020-04-06 10:55:58 +00:00
nixpkgs.overlays =
[ (self: super: { sxhkd = pkgs.writeScriptBin "dummy-sxhkd" ""; }) ];
2019-09-15 21:12:08 +00:00
nmt.script = ''
2020-04-09 22:25:21 +00:00
sxhkdrc=home-files/.config/sxhkd/sxhkdrc
2019-09-15 21:12:08 +00:00
assertFileExists $sxhkdrc
assertFileContent $sxhkdrc ${./sxhkdrc}
'';
};
}