diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2025-06-28 20:07:43 -0700 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2025-06-28 20:07:43 -0700 |
commit | c24149837ab0dffba5aeb941a2b4888b56e49622 (patch) | |
tree | 81ada458917b4208f568946012c48ec3d20d5ffb /hosts/common | |
parent | 4dcba0a0453b86351e9ac54e6c8fa6a51ea2d5be (diff) | |
download | nix-c24149837ab0dffba5aeb941a2b4888b56e49622.tar nix-c24149837ab0dffba5aeb941a2b4888b56e49622.tar.gz nix-c24149837ab0dffba5aeb941a2b4888b56e49622.tar.bz2 nix-c24149837ab0dffba5aeb941a2b4888b56e49622.tar.lz nix-c24149837ab0dffba5aeb941a2b4888b56e49622.tar.xz nix-c24149837ab0dffba5aeb941a2b4888b56e49622.tar.zst nix-c24149837ab0dffba5aeb941a2b4888b56e49622.zip |
Enable Google Authenticator for sddm
Diffstat (limited to 'hosts/common')
-rw-r--r-- | hosts/common/optional/services/wayland.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/hosts/common/optional/services/wayland.nix b/hosts/common/optional/services/wayland.nix index aae6c8a..f512b29 100644 --- a/hosts/common/optional/services/wayland.nix +++ b/hosts/common/optional/services/wayland.nix @@ -87,7 +87,10 @@ { domain = "@users"; item = "rtprio"; type = "-"; value = 1; } ]; - services.sddm-greeter.googleAuthenticator.forwardPass = true; + services.sddm-greeter.googleAuthenticator = { + enable = true; + forwardPass = true; + }; }; polkit = { |