mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
27 lines
597 B
Nix
27 lines
597 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}
|
|
'';
|
|
}
|