Upgrade nixpkgs, home-manager and stateVersion to 23.05 #1

Merged
Toast merged 4 commits from upgrade-to-23.05 into main 2023-06-15 14:07:54 +02:00
2 changed files with 9 additions and 5 deletions
Showing only changes of commit dd1c2b3cab - Show all commits

View file

@ -5,10 +5,12 @@
services.gitea = {
enable = true;
# TODO: Make this not be hardcoded
rootUrl = "http://everest.local:3000";
settings = {
#server.SSH_PORT = 69;
service.DISABLE_REGISTRATION = lib.mkDefault true;
server = {
#server.SSH_PORT = 69;
DISABLE_REGISTRATION = lib.mkDefault true;
ROOT_URL = "http://everest.local:3000";
};
};
};
networking.firewall = {

View file

@ -3,8 +3,10 @@
{
services.openssh = {
enable = true;
settings = {
PermitRootLogin = "no";
PasswordAuthentication = false;
};
startWhenNeeded = true;
permitRootLogin = "no";
passwordAuthentication = false;
};
}