From 10a7a4fabec6cf92cea116d15f6daacce59ca539 Mon Sep 17 00:00:00 2001 From: Random936 Date: Sun, 2 Mar 2025 11:25:33 -0800 Subject: [PATCH] Switch to rbw and rofi-rbw --- config/omen.nix | 10 +++++++++- dotfiles/.config/i3/config | 5 +++-- home/headful-nixos.nix | 3 ++- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/config/omen.nix b/config/omen.nix index cadc45a..1941a06 100644 --- a/config/omen.nix +++ b/config/omen.nix @@ -1,4 +1,4 @@ -{ lib, ... }: { +{ lib, pkgs, ... }: { imports = [ ../hardware/omen.nix @@ -58,4 +58,12 @@ # Enable bluetooth hardware.bluetooth.enable = true; services.blueman.enable = true; + + # Setup Pinentry + environment.systemPackages = with pkgs; [ pinentry-gtk2 ]; + programs.gnupg.agent = { + enable = true; + pinentryPackage = pkgs.pinentry-gtk2; + enableSSHSupport = true; + }; } diff --git a/dotfiles/.config/i3/config b/dotfiles/.config/i3/config index a1809e7..3136a4b 100644 --- a/dotfiles/.config/i3/config +++ b/dotfiles/.config/i3/config @@ -15,11 +15,12 @@ floating_modifier $mod # Application hot keys bindsym $mod+Return exec "alacritty" -bindsym $mod+Shift+f exec "firefox" +bindsym $mod+Shift+f exec "qutebrowser" bindsym $mod+Shift+e exec "emacsclient -c" bindsym $mod+Shift+d exec "discord" bindsym $mod+Shift+t exec "thunar" -bindsym $mod+Shift+p exec "flameshot gui" +bindsym $mod+Shift+s exec "flameshot gui" +bindsym $mod+Shift+p exec "rofi-rbw" # Lock screen with i3lock-fancy bindsym $mod+Shift+x exec "i3lock-fancy" diff --git a/home/headful-nixos.nix b/home/headful-nixos.nix index e75c05c..fcfa888 100644 --- a/home/headful-nixos.nix +++ b/home/headful-nixos.nix @@ -20,7 +20,8 @@ home.packages = with pkgs; [ wireguard-tools - #bitwarden-cli + rbw + rofi-rbw-x11 ]; home.file = {