From a2096efc3f5ff4300a2b9b3708203e3ef4845798 Mon Sep 17 00:00:00 2001 From: Hermes Date: Tue, 16 Jun 2026 19:08:49 -0400 Subject: [PATCH] fix: correct dotfiles path in home.nix (relative to repo root) --- users/gortium/home.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/users/gortium/home.nix b/users/gortium/home.nix index f0cce82..8fab8d8 100644 --- a/users/gortium/home.nix +++ b/users/gortium/home.nix @@ -1,7 +1,7 @@ { pkgs, lib, config, inputs, hostName, ... }: let - dotfiles = ./assets/dotfiles; + dotfiles = ../../assets/dotfiles; isUconsole = hostName == "uConsole"; in { home.username = "gortium";