feat(cliphist): add cliphist and refactor some code

This commit is contained in:
Nydragon 2024-11-10 21:00:44 +01:00
parent a5b3ff029a
commit 69921d5c6e
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
9 changed files with 27 additions and 17 deletions

View file

@ -10,7 +10,6 @@
./foot.nix
./rofi
./sway
./sway/swayidle.nix
./waybar
./hyprpaper
./swaync

View 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"}"
];
};
};
};
}

View file

@ -7,5 +7,8 @@
./gammastep.nix # default because I need to protect my peepers
./swww.nix
./keepassxc.nix
./cliphist.nix
./swayidle.nix
./swaylock.nix
];
}

View file

@ -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;

View file

@ -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;

View file

@ -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 = {

View file

@ -30,8 +30,8 @@
services = {
blueman-applet.enable = true;
swayidle.enable = true;
syncthing.enable = true;
cliphist.enable = true;
};
home = {

View file

@ -41,6 +41,7 @@
services = {
blueman-applet.enable = true;
syncthing.enable = true;
cliphist.enable = true;
};
home = {