feat: Delete nextcloud admin user (#133)

Co-authored-by: Alexander Tomokhov <alexoundos@selfprivacy.org>
Reviewed-on: https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-config/pulls/133
This commit is contained in:
Inex Code
2025-04-25 14:21:44 +03:00
parent 72472e8edf
commit 547eb00544
3 changed files with 21 additions and 1 deletions

View File

@@ -159,5 +159,17 @@ with lib;
You can put whatever you want here.
'';
};
#################
# Workarounds #
#################
workarounds = {
deleteNextcloudAdmin = mkOption {
description = ''
Whether to delete an admin user, which is initially created
'';
type = types.bool;
default = false;
};
};
};
}