1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-07 13:53:27 +02:00
home-manager/tests/modules/services/window-managers/i3/i3-keybindings.nix

24 lines
565 B
Nix
Raw Normal View History

2019-01-14 22:50:11 +01:00
{ config, lib, ... }:
{
imports = [ ./i3-stubs.nix ];
2019-01-14 22:50:11 +01:00
xsession.windowManager.i3 = {
enable = true;
2019-01-14 22:50:11 +01:00
config.keybindings =
let modifier = config.xsession.windowManager.i3.config.modifier;
in lib.mkOptionDefault {
"${modifier}+Left" = "overridden-command";
"${modifier}+Right" = null;
"${modifier}+Invented" = "invented-key-command";
};
2019-01-14 22:50:11 +01:00
};
nmt.script = ''
assertFileExists home-files/.config/i3/config
assertFileContent home-files/.config/i3/config \
${./i3-keybindings-expected.conf}
'';
2019-01-14 22:50:11 +01:00
}