feat: reactivate and update ext-julia
This commit is contained in:
parent
5a9e25cc6e
commit
7f48da24e9
2 changed files with 19 additions and 18 deletions
|
@ -1,31 +1,32 @@
|
|||
{pkgs, rootPath, ...}:{
|
||||
{pkgs, rootPath, lib, ...}:{
|
||||
imports = [
|
||||
./boot.nix
|
||||
./hardware-configuration.nix
|
||||
|
||||
(rootPath + /system_profiles/server.nix)
|
||||
(rootPath + /modules/pkg_mgrmnt/unattended-updates.nix)
|
||||
|
||||
#(rootPath + /modules/hosting/wordpress-simple/kiezpalme.nix)
|
||||
#(rootPath + /modules/hosting/wordpress-simple/pertineo.nix)
|
||||
(rootPath + /modules/hosting/wordpress.nix)
|
||||
(rootPath + /modules/hosting/wordpress-simple/kiezpalme.nix)
|
||||
(rootPath + /modules/hosting/wordpress-simple/pertineo.nix)
|
||||
#(rootPath + /modules/hosting/wordpress.nix)
|
||||
];
|
||||
|
||||
#services.mysql = {
|
||||
services.mysql = {
|
||||
enable = true;
|
||||
package = pkgs.mariadb;
|
||||
settings.mysqld.bind-address = "127.0.0.1";
|
||||
};
|
||||
|
||||
#services.cWordpress."example-site" = {
|
||||
# enable = true;
|
||||
# package = pkgs.mariadb;
|
||||
# sitePort = 80;
|
||||
#};
|
||||
|
||||
services.cWordpress."example-site" = {
|
||||
enable = true;
|
||||
sitePort = 80;
|
||||
};
|
||||
#services.cWordpress."example-site2" = {
|
||||
# enable = true;
|
||||
# sitePort = 81;
|
||||
#};
|
||||
|
||||
services.cWordpress."example-site2" = {
|
||||
enable = true;
|
||||
sitePort = 81;
|
||||
};
|
||||
|
||||
services.openssh.ports = [11522];
|
||||
services.openssh.ports = lib.mkForce [11522];
|
||||
users = let
|
||||
username = "root";
|
||||
in {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue