From bdfdca4505c34ffe2e1e6e1bb49ade9387c39ac9 Mon Sep 17 00:00:00 2001
From: NullBite <me@nullbite.com>
Date: Thu, 25 Apr 2024 08:55:12 -0400
Subject: [PATCH] root: set home dir

---
 flake.nix | 1 +
 1 file changed, 1 insertion(+)

diff --git a/flake.nix b/flake.nix
index f83ef5a..6b2b796 100644
--- a/flake.nix
+++ b/flake.nix
@@ -326,6 +326,7 @@
         username = "root";
         config = { pkgs, ...}: {
           programs.bash.enable = true;
+          home.homeDirectory = "/root";
 
           # update nix system-wide since it's installed via root profile
           home.packages = with pkgs; [ nix ];