mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 02:39:45 +01:00
f56a087cbc
Propagates the bindkeysToCode setting which adds --to-code to the keybindings in mode configs. Closes #2174
27 lines
631 B
Nix
27 lines
631 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
dummy-package = pkgs.runCommandLocal "dummy-package" { } "mkdir $out";
|
|
|
|
in {
|
|
config = {
|
|
wayland.windowManager.sway = {
|
|
enable = true;
|
|
package = dummy-package // { outPath = "@sway"; };
|
|
# overriding findutils causes issues
|
|
config.menu = "${pkgs.dmenu}/bin/dmenu_run";
|
|
config.bindkeysToCode = true;
|
|
};
|
|
|
|
nixpkgs.overlays = [ (import ./sway-overlay.nix) ];
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/sway/config
|
|
assertFileContent home-files/.config/sway/config \
|
|
${./sway-bindkeys-to-code.conf}
|
|
'';
|
|
};
|
|
}
|