update to 202511
This commit is contained in:
@@ -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
|
||||
'';
|
||||
};
|
||||
|
||||
|
||||
|
||||
@@ -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
|
||||
];
|
||||
}
|
||||
|
||||
@@ -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
11
services/morss.nix
Normal file
@@ -0,0 +1,11 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
services.nginx.virtualHosts."morss.stubbe.rocks" = {
|
||||
enableACME = true;
|
||||
forceSSL = true;
|
||||
locations."/".proxyPass = "http://localhost:8000";
|
||||
};
|
||||
|
||||
|
||||
}
|
||||
@@ -4,6 +4,6 @@
|
||||
# used for gitea and nextcloud
|
||||
services.postgresql = {
|
||||
enable = true;
|
||||
package = pkgs.postgresql_13;
|
||||
package = pkgs.postgresql_18;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user