{ config, lib, pkgs, ... }: let cfg = config.os.core.security; in { options.os.core.security.enable = lib.mkEnableOption "core security services"; config = lib.mkIf cfg.enable { services.gnome.gnome-keyring.enable = true; security = { pam.services = { swaylock = { }; login.enableGnomeKeyring = true; }; polkit.enable = true; rtkit.enable = true; }; # systemd.user.services.polkit-gnome-authentication-agent-1 = { # description = "gnome-polkit-authentication-agent-1"; # wantedBy = [ "graphical-session.target" ]; # serviceConfig = { # Type = "simple"; # ExecStart = "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1"; # Restart = "on-failure"; # RestartSec = 1; # TimeoutStopSec = 10; # }; # }; environment.systemPackages = with pkgs; [ veracrypt bitwarden-desktop ]; }; }