1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-07 17:41:03 +01:00
home-manager/tests/modules/services/window-managers/i3/i3-followmouse.nix
Austin Horstman cba2f9ce95 treewide: reformat nixfmt-rfc-style
Reformat repository using new nixfmt-rfc-style.
2025-04-08 08:50:05 -07: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}
'';
}