forked from Shinonome/omarchy-nix
1password fix, fingerprint work
This commit is contained in:
@@ -8,4 +8,6 @@ inputs: {
|
|||||||
enable = true;
|
enable = true;
|
||||||
package = inputs.hyprland.packages.${pkgs.system}.hyprland;
|
package = inputs.hyprland.packages.${pkgs.system}.hyprland;
|
||||||
};
|
};
|
||||||
|
services.hyprpolkitagent.enable = true;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -25,7 +25,6 @@ in {
|
|||||||
background = {
|
background = {
|
||||||
monitor = "";
|
monitor = "";
|
||||||
path = "screenshot";
|
path = "screenshot";
|
||||||
# color = backgroundRgb;
|
|
||||||
blur_passes = 3;
|
blur_passes = 3;
|
||||||
brightness = 0.6;
|
brightness = 0.6;
|
||||||
};
|
};
|
||||||
@@ -37,7 +36,6 @@ in {
|
|||||||
halign = "center";
|
halign = "center";
|
||||||
valign = "center";
|
valign = "center";
|
||||||
|
|
||||||
# inner_color = "rgba(45,53,59,0.8)"; # #2d353b with opacity
|
|
||||||
inner_color = surfaceRgb;
|
inner_color = surfaceRgb;
|
||||||
outer_color = foregroundRgb; # #d3c6aa
|
outer_color = foregroundRgb; # #d3c6aa
|
||||||
outline_thickness = 4;
|
outline_thickness = 4;
|
||||||
@@ -55,6 +53,18 @@ in {
|
|||||||
shadow_passes = 0;
|
shadow_passes = 0;
|
||||||
fade_on_empty = false;
|
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";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,6 +4,7 @@
|
|||||||
_1password-gui.enable = true;
|
_1password-gui.enable = true;
|
||||||
|
|
||||||
# TODO: Dynamically get user names
|
# TODO: Dynamically get user names
|
||||||
# _1password-gui.polkitPolicyOwners = ["henry"];
|
_1password-gui.polkitPolicyOwners = ["henry"];
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,14 +3,12 @@ inputs: {
|
|||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
|
|
||||||
programs.hyprland = {
|
programs.hyprland = {
|
||||||
enable = true;
|
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 = "*";
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user