1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-04 20:33:27 +02:00
home-manager/tests/modules/services/sxhkd/configuration.nix

33 lines
551 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
services.sxhkd = {
enable = true;
2019-09-15 23:12:08 +02:00
package = config.lib.test.mkStubPackage { outPath = "@sxhkd@"; };
keybindings = {
"super + a" = "run command a";
"super + b" = null;
"super + Shift + b" = "run command b";
};
2019-09-15 23:12:08 +02:00
extraConfig = ''
super + c
call command c
2019-09-15 23:12:08 +02:00
# comment
super + d
call command d
2019-09-15 23:12:08 +02:00
'';
};
nmt.script = ''
sxhkdrc=home-files/.config/sxhkd/sxhkdrc
assertFileExists $sxhkdrc
assertFileContent $sxhkdrc ${./sxhkdrc}
'';
2019-09-15 23:12:08 +02:00
}