making dionysos the caddy server

This commit is contained in:
chloe 2025-03-09 12:48:57 +01:00
parent 689c11e4eb
commit 0e916f7c08
3 changed files with 64 additions and 2 deletions

View file

@ -7,7 +7,7 @@ let
username = "harry123";
in
{
imports = [../../features/server/tailscale.nix];
imports = [ ../../features/server/tailscale.nix ];
environment.systemPackages = with pkgs; [
weechat
tmux
@ -29,10 +29,12 @@ in
];
};
users.users.${username}.initialHashedPassword = "$y$j9T$s4isXqWcg4N8TEPjmj0fD/$zog2cpUwstnvwDnQsFmH3br/WAeD2Uu/L7ePr00cKkA";
users.users.${username}.initialHashedPassword =
"$y$j9T$s4isXqWcg4N8TEPjmj0fD/$zog2cpUwstnvwDnQsFmH3br/WAeD2Uu/L7ePr00cKkA";
environment.variables.EDITOR = "nvim";
# TODO: migrate this to sisyphe
services.nginx = {
enable = true;
recommendedGzipSettings = true;