mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-08 14:40:19 +02:00
disabled features i didnt needed
This commit is contained in:
parent
12596749b5
commit
8cfb304e5c
10 changed files with 184 additions and 185 deletions
|
@ -1,17 +1,19 @@
|
|||
{pkgs, config, ...} :
|
||||
{ pkgs, config, ... }:
|
||||
{
|
||||
services.mysql = {
|
||||
enable = true;
|
||||
enable = false;
|
||||
package = pkgs.mariadb;
|
||||
ensureDatabases = [ "photoprism" ];
|
||||
ensureUsers = [
|
||||
{
|
||||
name = "photoprism";
|
||||
ensurePermissions = {
|
||||
"photoprism.*" = "ALL PRIVILEGES";
|
||||
};
|
||||
}
|
||||
];
|
||||
/*
|
||||
ensureDatabases = [ "photoprism" ];
|
||||
ensureUsers = [
|
||||
{
|
||||
name = "photoprism";
|
||||
ensurePermissions = {
|
||||
"photoprism.*" = "ALL PRIVILEGES";
|
||||
};
|
||||
}
|
||||
];
|
||||
*/
|
||||
};
|
||||
|
||||
services.postgresql = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue