From aeaaa4985e553ba115b8aef4454df55d7cb05805 Mon Sep 17 00:00:00 2001 From: Joseph Hanson Date: Tue, 30 Apr 2024 07:52:27 -0500 Subject: [PATCH] Add group and declare system user. --- nixos/telperion/configuration.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/telperion/configuration.nix b/nixos/telperion/configuration.nix index 9949386..9f44162 100644 --- a/nixos/telperion/configuration.nix +++ b/nixos/telperion/configuration.nix @@ -68,10 +68,12 @@ }; # Matchbox Server for PXE booting via device profiles + users.groups.matchbox = {}; users.users = { matchbox = { group = "matchbox"; home = "matchbox"; + isSystemUser = true; }; };