added river
This commit is contained in:
parent
a643248e06
commit
faa055caf2
8 changed files with 45 additions and 12 deletions
19
modules/default/home-manager/desktop/compositors/river.nix
Normal file
19
modules/default/home-manager/desktop/compositors/river.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ 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";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue