diff options
| author | seth <[email protected]> | 2022-12-02 08:10:15 +0000 |
|---|---|---|
| committer | seth <[email protected]> | 2022-12-02 08:11:08 +0000 |
| commit | 1f3e4b6ad522a186d2b693953b4c6f5ab1e892b7 (patch) | |
| tree | 30d1baf3e915a13106695723ad1a0878b39886cd /hosts/common/users.nix | |
| parent | 0912f5dc12cde4f925a0669aa6c1cbdb189b503d (diff) | |
add editorconfig and alejandra
Diffstat (limited to 'hosts/common/users.nix')
| -rw-r--r-- | hosts/common/users.nix | 15 |
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 "!"; }; - + }; + }; } |
