Compare commits

..

No commits in common. "1a2dacd753af5d74fbc845916fac6f804154ec40" and "25837dfd6267a8c9498021821d53d7068ffda8e0" have entirely different histories.

3 changed files with 3 additions and 6 deletions

View File

@ -61,7 +61,6 @@ in
services.nginx.virtualHosts."${gitlab_host}" = {
locations."/".proxyPass = "http://127.0.0.1:8080";
serverAliases = [ "gitlab.${fqdn}" ];
forceSSL = true;
enableACME = true;
};

View File

@ -72,6 +72,7 @@ in {
nginx.virtualHosts."${gitea_host}" = {
enableACME = true;
forceSSL = true;
serverAliases = [ "gitlab.${fqdn}" ];
locations."/".proxyPass =
"http://${config.services.gitea.settings.server.HTTP_ADDR}:${
builtins.toString config.services.gitea.settings.server.HTTP_PORT

View File

@ -1,4 +1,5 @@
{ pkgs, user, config, ... }: {
{ pkgs, user, config, ... }:
{
security.sudo.wheelNeedsPassword = false;
users.users = {
root.hashedPasswordFile = config.age.secrets.users-root-pw.path;
@ -12,8 +13,4 @@
];
};
};
environment.persistence.ephemeral.users = {
price = { files = [ ".bash_history" ]; };
root = { home = "/root"; files = [ ".bash_history" ]; };
};
}