feat(cliphist): add cliphist and refactor some code
This commit is contained in:
parent
a5b3ff029a
commit
69921d5c6e
9 changed files with 27 additions and 17 deletions
|
@ -10,7 +10,6 @@
|
||||||
./foot.nix
|
./foot.nix
|
||||||
./rofi
|
./rofi
|
||||||
./sway
|
./sway
|
||||||
./sway/swayidle.nix
|
|
||||||
./waybar
|
./waybar
|
||||||
./hyprpaper
|
./hyprpaper
|
||||||
./swaync
|
./swaync
|
||||||
|
|
16
home/graphical/cliphist.nix
Normal file
16
home/graphical/cliphist.nix
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{ lib, config, ... }:
|
||||||
|
let
|
||||||
|
package = config.services.cliphist.package;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
config = lib.mkIf config.services.cliphist.enable {
|
||||||
|
programs.rofi = {
|
||||||
|
enable = true;
|
||||||
|
extraConfig = {
|
||||||
|
modes = [
|
||||||
|
"clipboard:${lib.my.checkPath package "cliphist-rofi-img"}"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -7,5 +7,8 @@
|
||||||
./gammastep.nix # default because I need to protect my peepers
|
./gammastep.nix # default because I need to protect my peepers
|
||||||
./swww.nix
|
./swww.nix
|
||||||
./keepassxc.nix
|
./keepassxc.nix
|
||||||
|
./cliphist.nix
|
||||||
|
./swayidle.nix
|
||||||
|
./swaylock.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
{ ... }:
|
{ lib, config, ... }:
|
||||||
{
|
{
|
||||||
programs.swaylock = {
|
config.programs.swaylock = lib.mkIf config.programs.swaylock.enable {
|
||||||
enable = true;
|
|
||||||
settings = {
|
settings = {
|
||||||
ignore-empty-password = true;
|
ignore-empty-password = true;
|
||||||
indicator-idle-visible = true;
|
indicator-idle-visible = true;
|
|
@ -1,7 +1,6 @@
|
||||||
{ lib, osConfig, ... }:
|
{ lib, config, ... }:
|
||||||
lib.mkIf (osConfig.programs.hyprland.enable || osConfig.programs.sway.enable) {
|
lib.mkIf config.programs.hyprlock.enable {
|
||||||
programs.hyprlock = {
|
programs.hyprlock = {
|
||||||
enable = true;
|
|
||||||
settings = {
|
settings = {
|
||||||
general = {
|
general = {
|
||||||
hide_cursor = true;
|
hide_cursor = true;
|
||||||
|
|
|
@ -13,7 +13,6 @@ lib.mkIf osConfig.programs.sway.enable {
|
||||||
|
|
||||||
wayland.windowManager.sway =
|
wayland.windowManager.sway =
|
||||||
let
|
let
|
||||||
homeDirectory = config.home.homeDirectory;
|
|
||||||
term = "${pkgs.foot}/bin/foot";
|
term = "${pkgs.foot}/bin/foot";
|
||||||
filemanager = "${pkgs.nautilus}/bin/nautilus";
|
filemanager = "${pkgs.nautilus}/bin/nautilus";
|
||||||
colors = {
|
colors = {
|
||||||
|
@ -27,8 +26,6 @@ lib.mkIf osConfig.programs.sway.enable {
|
||||||
keychron_bt = "1452:591:Keychron_K4";
|
keychron_bt = "1452:591:Keychron_K4";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
wallpaper = "${homeDirectory}/Pictures/backgrounds/catppucchin";
|
|
||||||
|
|
||||||
mkRegexList = list: "^(${(lib.strings.concatStringsSep "|" list)})$";
|
mkRegexList = list: "^(${(lib.strings.concatStringsSep "|" list)})$";
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
@ -90,8 +87,8 @@ lib.mkIf osConfig.programs.sway.enable {
|
||||||
"--locked XF86AudioPause" = "exec ${pkgs.playerctl}/bin/playerctl play-pause";
|
"--locked XF86AudioPause" = "exec ${pkgs.playerctl}/bin/playerctl play-pause";
|
||||||
"--locked XF86AudioNext" = "exec ${pkgs.playerctl}/bin/playerctl next";
|
"--locked XF86AudioNext" = "exec ${pkgs.playerctl}/bin/playerctl next";
|
||||||
"--locked XF86AudioPrev" = "exec ${pkgs.playerctl}/bin/playerctl previous";
|
"--locked XF86AudioPrev" = "exec ${pkgs.playerctl}/bin/playerctl previous";
|
||||||
"Print" = "exec ${pkgs.scripts.screenshot}/bin/screenshot";
|
"Print" = "exec ${pkgs.hyprshot}/bin/hyprshot -m region";
|
||||||
"${mod}+u" = "exec ${pkgs.hyprshot}/bin/hyprshot -o ~/Pictures/screenshots -m region";
|
"${mod}+u" = "exec ${pkgs.hyprshot}/bin/hyprshot -m region";
|
||||||
"${mod}+Shift+u" = "exec ${pkgs.hyprshot}/bin/hyprshot --raw -m region | ${pkgs.satty}/bin/satty -f - --fullscreen";
|
"${mod}+Shift+u" = "exec ${pkgs.hyprshot}/bin/hyprshot --raw -m region | ${pkgs.satty}/bin/satty -f - --fullscreen";
|
||||||
|
|
||||||
#: Workspace movement {{{
|
#: Workspace movement {{{
|
||||||
|
@ -123,10 +120,6 @@ lib.mkIf osConfig.programs.sway.enable {
|
||||||
{ command = "${pkgs.nextcloud-client}/bin/nextcloud --background"; }
|
{ command = "${pkgs.nextcloud-client}/bin/nextcloud --background"; }
|
||||||
{ command = "${config.services.kdeconnect.package}/bin/kdeconnect-indicator"; }
|
{ command = "${config.services.kdeconnect.package}/bin/kdeconnect-indicator"; }
|
||||||
{ command = "${pkgs.protonmail-bridge-gui}/bin/protonmail-bridge-gui --no-window"; }
|
{ command = "${pkgs.protonmail-bridge-gui}/bin/protonmail-bridge-gui --no-window"; }
|
||||||
{
|
|
||||||
command = "${pkgs.scripts.set-background}/bin/set-background -f ${wallpaper}";
|
|
||||||
always = true;
|
|
||||||
}
|
|
||||||
];
|
];
|
||||||
#: }}}
|
#: }}}
|
||||||
assigns = {
|
assigns = {
|
||||||
|
|
|
@ -30,8 +30,8 @@
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
blueman-applet.enable = true;
|
blueman-applet.enable = true;
|
||||||
swayidle.enable = true;
|
|
||||||
syncthing.enable = true;
|
syncthing.enable = true;
|
||||||
|
cliphist.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
|
|
|
@ -41,6 +41,7 @@
|
||||||
services = {
|
services = {
|
||||||
blueman-applet.enable = true;
|
blueman-applet.enable = true;
|
||||||
syncthing.enable = true;
|
syncthing.enable = true;
|
||||||
|
cliphist.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue