added base suite to root user

This commit is contained in:
Infinidoge 2021-10-15 09:47:10 -04:00
parent 51f866c0f8
commit 36d4a48238

View file

@ -1,5 +1,12 @@
{ ... }:
{
{ lib, ... }: {
users.users.root.hashedPassword =
"PASSWORD SET IN THE FUTURE";
home-manager.users.root = { suites, profiles, ... }: {
imports = lib.lists.flatten [
(with suites; [
base
])
];
};
}