second try, for real

This commit is contained in:
2026-05-27 00:42:53 -05:00
parent d416c21e9a
commit 75cf58db8a
3 changed files with 14 additions and 7 deletions
+1 -7
View File
@@ -20,11 +20,6 @@
options.services.nimh-static = {
enable = lib.mkEnableOption "serve nimh via k3s pod.";
rootDir = lib.mkOption {
type = lib.types.path;
description = "Root of the static site";
};
default-nginx = {
enable = lib.mkEnableOption "Enable nginx reverse proxy.";
hostname = lib.mkOption {
@@ -40,8 +35,7 @@
users.groups.nimh = { };
users.users.nimh = {
isSystemUser = true;
createHome = true;
home = "${opts.rootDir}";
createHome = false;
group = "nimh";
};