From 375d87edc3bf27b93fc71cc8c9477268344ed8d7 Mon Sep 17 00:00:00 2001 From: Yureka Date: Mon, 22 Jul 2024 02:24:13 +0200 Subject: [PATCH] fix(module): disable dynamicuser again --- modules/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/default.nix b/modules/default.nix index cd44080..4d030f8 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -127,7 +127,10 @@ in config = lib.mkIf cfg.enable { environment.systemPackages = [ pkgs.tvix ]; - users.users.tvix-castore = { }; + users.users.tvix-castore = { + isSystemUser = true; + group = "tvix-castore"; + }; users.groups.tvix-castore = { }; systemd.tmpfiles.rules = [ "d ${cfg.castoreDir} 770 root tvix-castore -" ];