From 7d1528516823e6d08ce0e3ed6e71117d51c4bcc6 Mon Sep 17 00:00:00 2001 From: albert Date: Sun, 27 Aug 2023 22:17:56 +0900 Subject: [PATCH] Clean up icon sizes. I think I have it figured out --- .../hosts/nixos-laptop/desktops/hyprland/hyprland-conf.nix | 2 +- nixos/common/desktops/hyprland/default.nix | 3 ++- nixos/common/services/gnupg-agent.nix | 5 +++++ 3 files changed, 8 insertions(+), 2 deletions(-) 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 + ]; }