summaryrefslogtreecommitdiff
path: root/hosts/glados/users.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/glados/users.nix')
-rw-r--r--hosts/glados/users.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/hosts/glados/users.nix b/hosts/glados/users.nix
new file mode 100644
index 0000000..e0b04c5
--- /dev/null
+++ b/hosts/glados/users.nix
@@ -0,0 +1,27 @@
+{ 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 "!";
+ };
+
+ seth = {
+ extraGroups = [ "wheel" ];
+ isNormalUser = true;
+ hashedPassword = "idontknowhowtosecurethis";
+ shell = fish;
+ };
+
+ };
+ };
+}