From 66fb553ab7b5f4b85f5ce1c2d3bf9e711a2f79e1 Mon Sep 17 00:00:00 2001 From: Tim Van Baak Date: Wed, 24 Apr 2024 04:32:01 +0000 Subject: [PATCH] backyard: add user katydid --- machine/backyard/default.nix | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/machine/backyard/default.nix b/machine/backyard/default.nix index ee65585..0fba61d 100644 --- a/machine/backyard/default.nix +++ b/machine/backyard/default.nix @@ -22,7 +22,6 @@ # Enable networking networking.networkmanager.enable = true; - users.users.tvb.extraGroups = [ "networkmanager" ]; networking.firewall = { enable = true; @@ -41,6 +40,22 @@ }; }; + users.users = { + tvb = { + extraGroups = [ "networkmanager" ]; + }; + katydid = { + uid = 1102; + isNormalUser = true; + group = "katydid"; + initialPassword = "katydid"; + }; + }; + + users.groups = { + katydid.gid = 1102; + }; + # This value governs how some stateful data, like databases, are handled # across different versions of NixOS. This should not be changed to a new # release unless the sysadmin has determined that no services would be