From 17de08478948952823b5a09e757d4b6780ea0648 Mon Sep 17 00:00:00 2001 From: Bernardo Magri Date: Mon, 13 Apr 2026 14:42:52 +0100 Subject: [PATCH] fix: resolve standalone home-manager configuration and fix installer iso syntax --- core/system/hardware.nix | 2 +- hosts/installer-iso.nix | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/core/system/hardware.nix b/core/system/hardware.nix index e0d63ee..2c0e884 100644 --- a/core/system/hardware.nix +++ b/core/system/hardware.nix @@ -25,7 +25,7 @@ in wantedBy = [ "multi-user.target" ]; serviceConfig = { Type = "simple"; - ExecStart = "${config.home-manager.users.${config.services.displayManager.autoLogin.user}.home.homeDirectory}/.nix-profile/bin/nomarchy-haptic-touchpad"; + ExecStart = "${config.users.users.${config.services.displayManager.autoLogin.user}.home}/.nix-profile/bin/nomarchy-haptic-touchpad"; Restart = "on-failure"; RestartSec = "2"; }; diff --git a/hosts/installer-iso.nix b/hosts/installer-iso.nix index 21449e1..cffae1f 100644 --- a/hosts/installer-iso.nix +++ b/hosts/installer-iso.nix @@ -5,6 +5,7 @@ # This creates a minimal, text-only installation environment. # No desktop environment - just TTY with gum-based installer. +{ imports = [ ../core/system/nix.nix ];