Switch to rbw and rofi-rbw

This commit is contained in:
Random936
2025-03-02 11:25:33 -08:00
parent a3341fa7d0
commit 10a7a4fabe
3 changed files with 14 additions and 4 deletions

View File

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