mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 02:39:45 +01:00
797c77a00a
This replaces some derivation outputs by simple strings rather than full Nix store paths. This removes the need to download the whole derivation when all we need is a static string.
43 lines
910 B
Nix
43 lines
910 B
Nix
{ 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@";
|
|
};
|
|
|
|
i3 = super.i3 // {
|
|
outPath = "@i3@";
|
|
};
|
|
|
|
i3status = super.i3status // {
|
|
outPath = "@i3status@";
|
|
};
|
|
})
|
|
];
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/i3/config
|
|
assertFileContent home-files/.config/i3/config \
|
|
${./i3-keybindings-expected.conf}
|
|
'';
|
|
};
|
|
}
|