1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-02 23:21:02 +01:00
home-manager/tests/modules/services/i3/i3-followmouse.nix
Austin Horstman 06c1392ca8 tests: implement auto importing for modules
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2025-06-22 23:58:37 -05:00

33 lines
643 B
Nix

{
xsession.windowManager.i3 = {
enable = true;
config.focus.followMouse = false;
};
nixpkgs.overlays = [
(self: super: {
dmenu = super.dmenu // {
outPath = "@dmenu@";
};
i3 = super.writeScriptBin "i3" "" // {
outPath = "@i3@";
};
i3-gaps = super.writeScriptBin "i3" "" // {
outPath = "@i3-gaps@";
};
i3status = super.i3status // {
outPath = "@i3status@";
};
})
];
nmt.script = ''
assertFileExists home-files/.config/i3/config
assertFileContent home-files/.config/i3/config \
${./i3-followmouse-expected.conf}
'';
}