diff --git a/home-manager/hosts/nixos-laptop/desktops/hyprland/hyprland-conf.nix b/home-manager/hosts/nixos-laptop/desktops/hyprland/hyprland-conf.nix index 92c86d5f..3d457d0b 100644 --- a/home-manager/hosts/nixos-laptop/desktops/hyprland/hyprland-conf.nix +++ b/home-manager/hosts/nixos-laptop/desktops/hyprland/hyprland-conf.nix @@ -9,7 +9,7 @@ monitor=,highrr,auto,1.25 # https://wiki.hyprland.org/Configuring/Variables/ - env = GDK_SCALE,2 + env = GDK_SCALE,1 env = XCURSOR_SIZE,48 # unscale XWayland diff --git a/nixos/common/desktops/hyprland/default.nix b/nixos/common/desktops/hyprland/default.nix index 9050bc36..c9d156d0 100644 --- a/nixos/common/desktops/hyprland/default.nix +++ b/nixos/common/desktops/hyprland/default.nix @@ -92,7 +92,8 @@ pkgs.xdg-utils # Utilities for better X/Wayland integration pkgs.bitwarden-cli # Bitwarden for rofi pkgs.bitwarden-menu # Bitwarden for rofi - inputs.nixpkgs-wayland.packages.${platform}.wayprompt # from nixpkgs-wayland exclusively - pinentry UI + inputs.nixpkgs-wayland.packages.${platform}.wayprompt # from nixpkgs-wayland exclusively - pinentry UI + pkgs.pulsemixer # TUI Pipewire / volume management # Themes pkgs.gruvbox-gtk-theme # Gruvbox Theme diff --git a/nixos/common/services/gnupg-agent.nix b/nixos/common/services/gnupg-agent.nix index 60c38869..0a2c70f2 100644 --- a/nixos/common/services/gnupg-agent.nix +++ b/nixos/common/services/gnupg-agent.nix @@ -5,4 +5,9 @@ enableBrowserSocket = true; pinentryFlavor = "emacs"; }; + + environment.systemPackages = with pkgs; [ + gpg-tui + gnupg + ]; }