mob next [ci-skip] [ci skip] [skip ci]

lastFile:machines/ramus/think-greater-chiangmai.nix
This commit is contained in:
2025-11-27 14:38:00 +07:00
parent 6af36b19f3
commit 4c7c63b49a
4 changed files with 18 additions and 10 deletions

View File

@@ -75,7 +75,7 @@ in
])
(submodule {
options = {
_secret = mkOption {
_secret = lib.mkOption {
type = nullOr str;
description = ''
The path to a file containing the value the
@@ -115,7 +115,7 @@ in
};
config = lib.mkIf cfg.enable {
users.users.${cfg.user} = {
users.users.${cfg.user} = lib.mkForce {
isSystemUser = true;
home = cfg.dataDir;
createHome = true;
@@ -270,7 +270,7 @@ in
services.mysql = {
enable = true;
package = pkgs.mariadb;
package = lib.mkForce pkgs.mariadb;
ensureDatabases = [ cfg.settings.DB_DATABASE ];
ensureUsers = [
{