3: Added Rofi, replaced Walker with Rofi (trial run), and added cliphist
This commit is contained in:
parent
4f378678c9
commit
a184270677
5
home/modules/cliphist.nix
Normal file
5
home/modules/cliphist.nix
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
services.cliphist = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
@ -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
13
home/modules/rofi.nix
Normal 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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user