From 818d498281f2427d21ebc196733dba9ba676bafd Mon Sep 17 00:00:00 2001 From: Quentin Boyer Date: Sun, 26 Mar 2023 19:08:26 +0200 Subject: [PATCH] ZeComputa: Add a guest account --- hostconfig/ZeNixComputa/nixos.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/hostconfig/ZeNixComputa/nixos.nix b/hostconfig/ZeNixComputa/nixos.nix index 509572c..c101db3 100644 --- a/hostconfig/ZeNixComputa/nixos.nix +++ b/hostconfig/ZeNixComputa/nixos.nix @@ -57,7 +57,13 @@ }; }; - users.users.traxys.uid = 1000; + users.users = { + traxys.uid = 1000; + guest = { + isNormalUser = true; + home = "/home/guest"; + }; + }; # This value determines the NixOS release from which the default # settings for stateful data, like file locations and database versions