1password fix, fingerprint work

This commit is contained in:
Henry Sipp
2025-07-03 18:23:00 -05:00
parent d9a4d6676d
commit 5756276bb4
4 changed files with 20 additions and 9 deletions
+2
View File
@@ -8,4 +8,6 @@ inputs: {
enable = true;
package = inputs.hyprland.packages.${pkgs.system}.hyprland;
};
services.hyprpolkitagent.enable = true;
}
+12 -2
View File
@@ -25,7 +25,6 @@ in {
background = {
monitor = "";
path = "screenshot";
# color = backgroundRgb;
blur_passes = 3;
brightness = 0.6;
};
@@ -37,7 +36,6 @@ in {
halign = "center";
valign = "center";
# inner_color = "rgba(45,53,59,0.8)"; # #2d353b with opacity
inner_color = surfaceRgb;
outer_color = foregroundRgb; # #d3c6aa
outline_thickness = 4;
@@ -55,6 +53,18 @@ in {
shadow_passes = 0;
fade_on_empty = false;
};
label = {
monitor = "";
text = "\$FPRINTPROMPT";
text_align = "center";
color = "rgb(211, 198, 170)";
font_size = 24;
font_family = "CaskaydiaMono Nerd Font";
position = "0, -100";
halign = "center";
valign = "center";
};
};
};
}
+2 -1
View File
@@ -4,6 +4,7 @@
_1password-gui.enable = true;
# TODO: Dynamically get user names
# _1password-gui.polkitPolicyOwners = ["henry"];
_1password-gui.polkitPolicyOwners = ["henry"];
};
}
+4 -6
View File
@@ -3,14 +3,12 @@ inputs: {
pkgs,
...
}: {
programs.hyprland = {
enable = true;
package = inputs.hyprland.packages.${pkgs.system}.hyprland;
};
# package = inputs.hyprland.packages.${pkgs.system}.hyprland;
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
xdg.portal = {
enable = true;
extraPortals = [pkgs.xdg-desktop-portal-gtk];
config.common.default = "*";
};
}