feat(fuji-wsl): add postgresql
This commit is contained in:
parent
9c4a850e1d
commit
ca7c38dbe7
1 changed files with 13 additions and 5 deletions
|
@ -30,7 +30,8 @@
|
|||
];
|
||||
};
|
||||
|
||||
services.mysql = {
|
||||
services = {
|
||||
mysql = {
|
||||
enable = true;
|
||||
package = pkgs.mariadb;
|
||||
settings = {
|
||||
|
@ -38,6 +39,13 @@
|
|||
};
|
||||
};
|
||||
|
||||
postgresql = {
|
||||
enable = true;
|
||||
package = pkgs.postgresql_17;
|
||||
enableTCPIP = true;
|
||||
};
|
||||
};
|
||||
|
||||
system.replaceDependencies = {
|
||||
cutoffPackages = lib.mkForce [ ]; # wsl does not have a ramdisk
|
||||
replacements = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue