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
|
||||
./rofi
|
||||
./sway
|
||||
./sway/swayidle.nix
|
||||
./waybar
|
||||
./hyprpaper
|
||||
./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
|
||||
./swww.nix
|
||||
./keepassxc.nix
|
||||
./cliphist.nix
|
||||
./swayidle.nix
|
||||
./swaylock.nix
|
||||
];
|
||||
}
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
{ ... }:
|
||||
{ lib, config, ... }:
|
||||
{
|
||||
programs.swaylock = {
|
||||
enable = true;
|
||||
config.programs.swaylock = lib.mkIf config.programs.swaylock.enable {
|
||||
settings = {
|
||||
ignore-empty-password = true;
|
||||
indicator-idle-visible = true;
|
|
@ -1,7 +1,6 @@
|
|||
{ lib, osConfig, ... }:
|
||||
lib.mkIf (osConfig.programs.hyprland.enable || osConfig.programs.sway.enable) {
|
||||
{ lib, config, ... }:
|
||||
lib.mkIf config.programs.hyprlock.enable {
|
||||
programs.hyprlock = {
|
||||
enable = true;
|
||||
settings = {
|
||||
general = {
|
||||
hide_cursor = true;
|
||||
|
|
|
@ -13,7 +13,6 @@ lib.mkIf osConfig.programs.sway.enable {
|
|||
|
||||
wayland.windowManager.sway =
|
||||
let
|
||||
homeDirectory = config.home.homeDirectory;
|
||||
term = "${pkgs.foot}/bin/foot";
|
||||
filemanager = "${pkgs.nautilus}/bin/nautilus";
|
||||
colors = {
|
||||
|
@ -27,8 +26,6 @@ lib.mkIf osConfig.programs.sway.enable {
|
|||
keychron_bt = "1452:591:Keychron_K4";
|
||||
};
|
||||
};
|
||||
wallpaper = "${homeDirectory}/Pictures/backgrounds/catppucchin";
|
||||
|
||||
mkRegexList = list: "^(${(lib.strings.concatStringsSep "|" list)})$";
|
||||
in
|
||||
{
|
||||
|
@ -90,8 +87,8 @@ lib.mkIf osConfig.programs.sway.enable {
|
|||
"--locked XF86AudioPause" = "exec ${pkgs.playerctl}/bin/playerctl play-pause";
|
||||
"--locked XF86AudioNext" = "exec ${pkgs.playerctl}/bin/playerctl next";
|
||||
"--locked XF86AudioPrev" = "exec ${pkgs.playerctl}/bin/playerctl previous";
|
||||
"Print" = "exec ${pkgs.scripts.screenshot}/bin/screenshot";
|
||||
"${mod}+u" = "exec ${pkgs.hyprshot}/bin/hyprshot -o ~/Pictures/screenshots -m region";
|
||||
"Print" = "exec ${pkgs.hyprshot}/bin/hyprshot -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";
|
||||
|
||||
#: Workspace movement {{{
|
||||
|
@ -123,10 +120,6 @@ lib.mkIf osConfig.programs.sway.enable {
|
|||
{ command = "${pkgs.nextcloud-client}/bin/nextcloud --background"; }
|
||||
{ command = "${config.services.kdeconnect.package}/bin/kdeconnect-indicator"; }
|
||||
{ command = "${pkgs.protonmail-bridge-gui}/bin/protonmail-bridge-gui --no-window"; }
|
||||
{
|
||||
command = "${pkgs.scripts.set-background}/bin/set-background -f ${wallpaper}";
|
||||
always = true;
|
||||
}
|
||||
];
|
||||
#: }}}
|
||||
assigns = {
|
||||
|
|
|
@ -30,8 +30,8 @@
|
|||
|
||||
services = {
|
||||
blueman-applet.enable = true;
|
||||
swayidle.enable = true;
|
||||
syncthing.enable = true;
|
||||
cliphist.enable = true;
|
||||
};
|
||||
|
||||
home = {
|
||||
|
|
|
@ -41,6 +41,7 @@
|
|||
services = {
|
||||
blueman-applet.enable = true;
|
||||
syncthing.enable = true;
|
||||
cliphist.enable = true;
|
||||
};
|
||||
|
||||
home = {
|
||||
|
|
Loading…
Add table
Reference in a new issue