3: Added Rofi, replaced Walker with Rofi (trial run), and added cliphist

This commit is contained in:
uzy lol 2024-12-27 22:06:20 -08:00
parent 4f378678c9
commit a184270677
3 changed files with 31 additions and 4 deletions

View File

@ -0,0 +1,5 @@
{
services.cliphist = {
enable = true;
};
}

View File

@ -8,11 +8,20 @@
./mako.nix ./mako.nix
./walker.nix ./walker.nix
./network-manager.nix ./network-manager.nix
./rofi.nix
./cliphist.nix
]; ];
programs.kitty.enable = true; programs.kitty.enable = true;
home.packages = [ home.packages = [
inputs.hyprland-qtutils.packages."${pkgs.system}".default inputs.hyprland-qtutils.packages."${pkgs.system}".default
pkgs.brightnessctl
pkgs.kdePackages.xwaylandvideobridge
pkgs.wl-clipboard
pkgs.libsForQt5.qt5ct
pkgs.kdePackages.qt6ct
]; ];
wayland.windowManager.hyprland = { wayland.windowManager.hyprland = {
@ -24,12 +33,13 @@
bind = bind =
[ [
"$mod, Return, exec, kitty" "$mod, Return, exec, kitty"
"$mod, SPACE, exec, walker" "$mod, SPACE, exec, rofi -show run"
"$mod, V, togglefloating,"
"$mod, E, exec, dolphin" "$mod, E, exec, dolphin"
"$mod SHIFT, V, togglefloating,"
"$mod SHIFT, Q, killactive," "$mod SHIFT, Q, killactive,"
"$mod, V, exec, cliphist list | rofi -dmenu | cliphist decode | wl-copy"
] ]
++ ( ++ (
# workspaces # workspaces
@ -75,7 +85,6 @@
extraConfig = '' extraConfig = ''
exec-once = waybar exec-once = waybar
exec-one = nm-applet --indicator
''; '';
}; };
} }

13
home/modules/rofi.nix Normal file
View File

@ -0,0 +1,13 @@
{pkgs, ... }: {
programs.rofi = {
enable = true;
cycle = false;
plugins = with pkgs; [
rofi-emoji-wayland
rofi-calc
rofi-bluetooth
rofi-screenshot
rofi-power-menu
];
};
}