diff --git a/users/root/default.nix b/users/root/default.nix index ae77399..70d60c2 100644 --- a/users/root/default.nix +++ b/users/root/default.nix @@ -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 + ]) + ]; + }; }