From 4d35cc115432e9814600cf1870ff3bdc3a3ead96 Mon Sep 17 00:00:00 2001
From: NullBite <me@nullbite.com>
Date: Fri, 9 Feb 2024 08:16:15 +0100
Subject: [PATCH] home: fix root.nix (this file should be elsewhere)

---
 home/root.nix | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/home/root.nix b/home/root.nix
index 266a894..aee753e 100644
--- a/home/root.nix
+++ b/home/root.nix
@@ -1,6 +1,12 @@
+# Configuration for root user.
+# TODO this file is sorta an exception to my repo organization, it should
+# probably be somewhere else.
 { config, lib, pkgs, ... }@args:
 { 
   imports = [
-    ./comma.nix
+    ./.
   ];
+  config = {
+    nixfiles.programs.comma.enable = true;
+  };
 }