summaryrefslogtreecommitdiff
path: root/home
diff options
context:
space:
mode:
Diffstat (limited to 'home')
-rw-r--r--home/desktop.nix11
1 files changed, 4 insertions, 7 deletions
diff --git a/home/desktop.nix b/home/desktop.nix
index 299031c..ab2b1d1 100644
--- a/home/desktop.nix
+++ b/home/desktop.nix
@@ -33,11 +33,6 @@ with lib; {
};
};
- rofi = {
- enable = true;
- theme = "DarkBlue";
- };
-
tmux = {
enable = true;
aggressiveResize = true;
@@ -69,6 +64,8 @@ with lib; {
bind-key X set-window-option synchronize-panes\; display-message "synchronize-panes is now #{?pane_synchronized,on,off}"
'';
};
+
+ wofi.enable = true;
};
wayland.windowManager.sway = {
@@ -127,14 +124,14 @@ with lib; {
keybindings =
let
mod = config.wayland.windowManager.sway.config.modifier;
- rofi = config.programs.rofi.finalPackage;
+ wofi = config.programs.wofi.package;
inherit (pkgs.local) st tmux-lift;
in
mkOptionDefault {
"${mod}+a" = "focus parent";
"${mod}+c" = "focus child";
- "${mod}+d" = "exec --no-startup-id ${getExe rofi} -show run";
+ "${mod}+d" = "exec --no-startup-id ${getExe wofi} -S run";
"${mod}+i" = "exec ${getExe pkgs.xcalib} -invert -alter";
"${mod}+o" = "exec ${getExe pkgs.xautolock} -locknow";
"${mod}+Return" = "exec ${getExe st} -e ${getExe tmux-lift}";