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

44 lines
910 B
Nix
Raw Normal View History

2019-01-14 22:50:11 +01:00
{ config, lib, ... }:
with lib;
{
config = {
xsession.windowManager.i3 = {
enable = true;
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";
};
};
nixpkgs.overlays = [
(self: super: {
dmenu = super.dmenu // {
outPath = "@dmenu@";
};
2019-01-14 22:50:11 +01:00
i3 = super.i3 // {
outPath = "@i3@";
};
2019-01-14 22:50:11 +01:00
i3status = super.i3status // {
outPath = "@i3status@";
};
})
];
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
'';
};
}