From 96e9d012813b827c75c0142d23d0946cd2bc90a3 Mon Sep 17 00:00:00 2001 From: niten Date: Mon, 15 Nov 2021 16:08:58 -0800 Subject: [PATCH] Generate config for root --- module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module.nix b/module.nix index abf0bcb..10d106b 100644 --- a/module.nix +++ b/module.nix @@ -23,7 +23,7 @@ let }; local-users = let - local-usernames = attrNames config.instance.local-users; + local-usernames = attrNames config.instance.local-users ++ [ "root" ]; in filterAttrs (username: userOpts: elem username local-usernames) user-config-map;