From 539a1d8713734a55182aebec1a399ab7174c3e48 Mon Sep 17 00:00:00 2001 From: unexplrd Date: Thu, 5 Jun 2025 16:59:52 +0300 Subject: [PATCH] hosts/dunamis/configuration.nix: remove TODO hosts/legion: autologin, secure boot, tpm Signed-off-by: unexplrd --- hosts/dunamis/configuration.nix | 5 ----- hosts/legion/configuration.nix | 11 ++++++++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/hosts/dunamis/configuration.nix b/hosts/dunamis/configuration.nix index 3c8f8cf..ba43108 100644 --- a/hosts/dunamis/configuration.nix +++ b/hosts/dunamis/configuration.nix @@ -27,11 +27,6 @@ enable = true; user = "user"; }; - # TODO: make a module for autologin - # services.greetd.settings.initial_session = { - # user = "user"; - # command = "${pkgs.niri}/bin/niri-session"; - # }; module = { config = { diff --git a/hosts/legion/configuration.nix b/hosts/legion/configuration.nix index f429cfb..acd8142 100644 --- a/hosts/legion/configuration.nix +++ b/hosts/legion/configuration.nix @@ -23,17 +23,22 @@ desktop.niri.enable = true; + services.displayManager.autoLogin = { + enable = true; + user = "user"; + }; + module = { config = { laptop.homeRowMods = true; powerSave = true; - # secureBoot = true; - # tpmDiskUnlock = true; + secureBoot = true; + tpmDiskUnlock = true; vaapi = "nvidia"; }; stylix = { enable = true; - theme = "helios"; + theme = "gruvbox-dark-pale"; }; };