summaryrefslogtreecommitdiff
path: root/hosts/common/users.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/common/users.nix')
-rw-r--r--hosts/common/users.nix15
1 files changed, 10 insertions, 5 deletions
diff --git a/hosts/common/users.nix b/hosts/common/users.nix
index 1dd219e..0d2681e 100644
--- a/hosts/common/users.nix
+++ b/hosts/common/users.nix
@@ -1,18 +1,23 @@
-{ config, lib, pkgs, ... }:
-
-with config; with lib; with pkgs;
{
+ config,
+ lib,
+ pkgs,
+ ...
+}:
+with config;
+with lib;
+with pkgs; {
users = {
defaultUserShell = bash;
mutableUsers = false;
users = {
-
root = {
home = "/root";
uid = ids.uids.root;
group = "root";
initialHashedPassword = mkDefault "!";
};
-
+ };
+ };
}