nix-config/modules/default/home-manager/desktop/compositors/river.nix
2025-01-08 12:54:03 +01:00

19 lines
417 B
Nix

{ lib, config, ... }:
lib.mkIf config.desktop.wm.river.enable {
home-manager.users.willifan = {
wayland.windowManager.river = {
enable = true;
settings = {
map = {
normal = {
"Super Q" = "spawn 'kitty'";
"Super R" = "spawn 'fuzzel'";
"Super E" = "spawn 'thunar'";
"Super C" = "close";
};
};
};
};
};
}