From 2d302b4b576222389fd24fa20aecae819a9834b1 Mon Sep 17 00:00:00 2001 From: albert Date: Sun, 5 May 2024 19:30:25 +0900 Subject: [PATCH] update --- home-manager/common/desktops/hyprland/components/swaylock.nix | 2 +- nixos/common/modules/yubikey-auth.nix | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) 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";