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.nix19
1 files changed, 0 insertions, 19 deletions
diff --git a/hosts/common/users.nix b/hosts/common/users.nix
deleted file mode 100644
index 6ca24c4..0000000
--- a/hosts/common/users.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- config,
- pkgs,
- ...
-}: {
- users = {
- defaultUserShell = pkgs.bash;
- mutableUsers = false;
-
- users = {
- root = {
- home = "/root";
- uid = config.ids.uids.root;
- group = "root";
- initialHashedPassword = "***REMOVED***";
- };
- };
- };
-}