From 4397eec2a1bc77720237f2b8a94b3fe07969e59c Mon Sep 17 00:00:00 2001 From: unexplrd Date: Sat, 7 Jun 2025 16:30:26 +0300 Subject: [PATCH] hosts/morphius: set hostId, autologin change boot.loader.timeout to 0 Signed-off-by: unexplrd --- hosts/morphius/configuration.nix | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/hosts/morphius/configuration.nix b/hosts/morphius/configuration.nix index 2bc0a50..980ca55 100644 --- a/hosts/morphius/configuration.nix +++ b/hosts/morphius/configuration.nix @@ -1,6 +1,7 @@ { inputs, - pkgs, + # pkgs, + lib, ... }: { imports = with inputs; [ @@ -14,11 +15,11 @@ networking = { networkmanager.enable = true; - # hostId = "31150fae"; + hostId = "bd1b5837"; hostName = "morphius"; }; - boot.kernelModules = ["i915"]; + boot.loader.timeout = lib.mkForce 0; environment.memoryAllocator.provider = "mimalloc"; system.stateVersion = "25.11"; time.timeZone = "Europe/Kyiv"; @@ -33,6 +34,11 @@ desktop.gnome.enable = true; + services.displayManager.autoLogin = { + enable = true; + user = "user"; + }; + module = { config = { secureBoot = true;