nixos

NixOS server files. Mirror from https://git.nordgedanken.dev/kubernetes/nixos
git clone git://archive.git.mtrnord.blog/MTRNord/nixos.git
Log | Files | Refs | README

commit 0abc3ce3eaa49b9270bffa6499fa6b6b3ca8ebdf
parent cc7109d97d14c8996bfddec5119595bc93590e66
Author: MTRNord <mtrnord1@gmail.com>
Date:   Tue,  3 Oct 2023 17:01:27 +0200

Add missing users

Diffstat:
Mnixos/worker-2/configuration.nix | 13++++++++++++-
1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/nixos/worker-2/configuration.nix b/nixos/worker-2/configuration.nix @@ -262,8 +262,19 @@ extraGroups = [ "wheel" ]; shell = pkgs.zsh; }; - "root".passwordFile = config.sops.secrets.root_initial_password.path; + + "discourse" = { + isNormalUser = false; + isSystemUser = true; + group = "discourse"; + }; + + "pgbouncer" = { + isNormalUser = false; + isSystemUser = true; + group = "pgbouncer"; + }; }; };