diff --git a/home-manager/common/desktops/hyprland/components/swaylock.nix b/home-manager/common/desktops/hyprland/components/swaylock.nix index bdeb61da..874e808a 100644 --- a/home-manager/common/desktops/hyprland/components/swaylock.nix +++ b/home-manager/common/desktops/hyprland/components/swaylock.nix @@ -1,7 +1,6 @@ { pkgs, ... }: { programs.swaylock = { enable = true; - # swaylock-effects has extra effects like image blur and stuff. package = pkgs.swaylock-effects; settings = { # All options are of the form . @@ -9,6 +8,7 @@ show-failed-attempts = true; effect-blur = "20x8"; screenshots = true; + fade-in = 0.2; clock = true; timestr = "%R"; diff --git a/nixos/common/modules/yubikey-auth.nix b/nixos/common/modules/yubikey-auth.nix index e9af224a..9d510ae1 100644 --- a/nixos/common/modules/yubikey-auth.nix +++ b/nixos/common/modules/yubikey-auth.nix @@ -1,7 +1,6 @@ { pkgs, ... }: { security.pam.yubico = { enable = true; - debug = true; control = "required"; mode = "challenge-response"; challengeResponsePath = "/run/secrets/yubikey";