From e0702f65ad2afc4647faabaf1445e8c6006cee97 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Thu, 13 Feb 2025 12:10:22 +0100 Subject: [PATCH] chore: remove hyprlock everywhere --- modules/core/yubikey.nix | 5 +++-- modules/home/hyprland/default.nix | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/modules/core/yubikey.nix b/modules/core/yubikey.nix index ba98c85..1c87fa5 100644 --- a/modules/core/yubikey.nix +++ b/modules/core/yubikey.nix @@ -15,9 +15,10 @@ login.u2fAuth = true; greetd.u2fAuth = true; sudo.u2fAuth = true; - hyprlock.u2fAuth = true; swaylock.fprintAuth = if (host == "sakura") then true else false; - hyprlock.fprintAuth = if (host == "sakura") then true else false; + # No longer using Hyprlock, might stay here for if I ever switch to it again. + # hyprlock.u2fAuth = true; + # hyprlock.fprintAuth = if (host == "sakura") then true else false; }; }; diff --git a/modules/home/hyprland/default.nix b/modules/home/hyprland/default.nix index e294c7e..500dd39 100644 --- a/modules/home/hyprland/default.nix +++ b/modules/home/hyprland/default.nix @@ -4,6 +4,6 @@ ++ [ (import ./config.nix) ] ++ [ (import ./scripts.nix) ] ++ [ (import ./variables.nix) ] - ++ [ (import ./hyprlock.nix) ] + # ++ [ (import ./hyprlock.nix) ] ++ [ inputs.hyprland.homeManagerModules.default ]; }