gpg
This commit is contained in:
parent
ae0689bd24
commit
f32d23295c
5 changed files with 40 additions and 3 deletions
14
modules/desktop/gnome-keyring.nix
Normal file
14
modules/desktop/gnome-keyring.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ lib, config, pkgs, ... }:
|
||||
|
||||
with lib;
|
||||
let
|
||||
cfg = config.modules.desktop.gnome-keyring;
|
||||
in {
|
||||
options.modules.desktop.gnome-keyring = {
|
||||
enable = mkEnableOption "Enable gnome-keyring, a password store";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
services.gnome.gnome-keyring.enable = true;
|
||||
};
|
||||
}
|
|
@ -157,13 +157,15 @@ in {
|
|||
"float, initialTitle:^Select a file to open$"
|
||||
"center, initialTitle:^Select a file to open$"
|
||||
"size 1100 650, initialTitle:^Select a file to open$"
|
||||
# unsure why this is required, scaling?
|
||||
# https://github.com/hyprwm/Hyprland/issues/6154
|
||||
"center, class:^gcr-prompter"
|
||||
"center, class:^pinentry-"
|
||||
"center, class:^polkit-"
|
||||
|
||||
"float, class:\.exe$"
|
||||
|
||||
# fix focus
|
||||
"stayfocused, class:^gcr-prompter"
|
||||
"stayfocused, class:^pinentry-"
|
||||
"stayfocused, class:^polkit-"
|
||||
"stayfocused, class:^rofi-"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue