added base suite to root user
This commit is contained in:
parent
51f866c0f8
commit
36d4a48238
1 changed files with 9 additions and 2 deletions
|
@ -1,5 +1,12 @@
|
||||||
{ ... }:
|
{ lib, ... }: {
|
||||||
{
|
|
||||||
users.users.root.hashedPassword =
|
users.users.root.hashedPassword =
|
||||||
"PASSWORD SET IN THE FUTURE";
|
"PASSWORD SET IN THE FUTURE";
|
||||||
|
|
||||||
|
home-manager.users.root = { suites, profiles, ... }: {
|
||||||
|
imports = lib.lists.flatten [
|
||||||
|
(with suites; [
|
||||||
|
base
|
||||||
|
])
|
||||||
|
];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue