home: fix root.nix (this file should be elsewhere)

This commit is contained in:
NullBite 2024-02-09 08:16:15 +01:00
parent ae20b39529
commit 4d35cc1154
Signed by: nullbite
GPG Key ID: 6C4D545385D4925A

@ -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;
};
}