update to 202511

This commit is contained in:
stubbfel
2025-12-09 18:24:58 +01:00
parent e96b7016bf
commit 99b7a30adb
5 changed files with 14 additions and 11 deletions

View File

@@ -1,19 +1,11 @@
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
zsh-git-prompt
];
programs.zsh = {
enable = true;
autosuggestions.enable = true;
enableCompletion = true;
syntaxHighlighting.enable = true;
interactiveShellInit = ''
source ${pkgs.zsh-git-prompt}/share/zsh-git-prompt/zshrc.sh
'';
};

View File

@@ -14,7 +14,7 @@
./resilio.nix
# ./sks.nix
./gitea.nix
./nexus.nix
# ./nexus.nix
# ./wireguard.nix
#./mqtt.nix
# ./jitsi.nix
@@ -24,5 +24,6 @@
# ./hydra.nix
./postgres.nix
./xkcd-password.nix
./morss.nix
];
}

View File

@@ -11,7 +11,6 @@
services.postgresql.enable = true;
services.gitea = {
enable = true;
useWizard = true;
repositoryRoot = "/var/lib/gitea/gitea-repositories";
lfs.enable = true;
# package = pkgs.gitea.override rec {

11
services/morss.nix Normal file
View File

@@ -0,0 +1,11 @@
{ config, pkgs, ... }:
{
services.nginx.virtualHosts."morss.stubbe.rocks" = {
enableACME = true;
forceSSL = true;
locations."/".proxyPass = "http://localhost:8000";
};
}

View File

@@ -4,6 +4,6 @@
# used for gitea and nextcloud
services.postgresql = {
enable = true;
package = pkgs.postgresql_13;
package = pkgs.postgresql_18;
};
}