update to 202511
This commit is contained in:
@@ -1,19 +1,11 @@
|
|||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
zsh-git-prompt
|
|
||||||
];
|
|
||||||
|
|
||||||
|
|
||||||
programs.zsh = {
|
programs.zsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
autosuggestions.enable = true;
|
autosuggestions.enable = true;
|
||||||
enableCompletion = true;
|
enableCompletion = true;
|
||||||
syntaxHighlighting.enable = true;
|
syntaxHighlighting.enable = true;
|
||||||
interactiveShellInit = ''
|
|
||||||
source ${pkgs.zsh-git-prompt}/share/zsh-git-prompt/zshrc.sh
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,7 @@
|
|||||||
./resilio.nix
|
./resilio.nix
|
||||||
# ./sks.nix
|
# ./sks.nix
|
||||||
./gitea.nix
|
./gitea.nix
|
||||||
./nexus.nix
|
# ./nexus.nix
|
||||||
# ./wireguard.nix
|
# ./wireguard.nix
|
||||||
#./mqtt.nix
|
#./mqtt.nix
|
||||||
# ./jitsi.nix
|
# ./jitsi.nix
|
||||||
@@ -24,5 +24,6 @@
|
|||||||
# ./hydra.nix
|
# ./hydra.nix
|
||||||
./postgres.nix
|
./postgres.nix
|
||||||
./xkcd-password.nix
|
./xkcd-password.nix
|
||||||
|
./morss.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,7 +11,6 @@
|
|||||||
services.postgresql.enable = true;
|
services.postgresql.enable = true;
|
||||||
services.gitea = {
|
services.gitea = {
|
||||||
enable = true;
|
enable = true;
|
||||||
useWizard = true;
|
|
||||||
repositoryRoot = "/var/lib/gitea/gitea-repositories";
|
repositoryRoot = "/var/lib/gitea/gitea-repositories";
|
||||||
lfs.enable = true;
|
lfs.enable = true;
|
||||||
# package = pkgs.gitea.override rec {
|
# 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
|
# used for gitea and nextcloud
|
||||||
services.postgresql = {
|
services.postgresql = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.postgresql_13;
|
package = pkgs.postgresql_18;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user