From f546ee06deff78fc021ab68387b199b1722eb163 Mon Sep 17 00:00:00 2001 From: NullBite Date: Fri, 10 May 2024 22:20:08 -0400 Subject: [PATCH] nullbox: configure autologin and autolock --- hosts/nullbox/configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/nullbox/configuration.nix b/hosts/nullbox/configuration.nix index 917002f..1e01ab7 100644 --- a/hosts/nullbox/configuration.nix +++ b/hosts/nullbox/configuration.nix @@ -56,6 +56,11 @@ programs.adb.enable = true; programs.greetd = { preset = "tuigreet"; + settings = { + autologin = true; + autologinUser = "nullbite"; + autolock = true; + }; }; programs.unbound.enable = true; common.remoteAccess.enable = true;