💻 code server
This commit is contained in:
parent
fb662e3628
commit
dfc41ece1e
@ -9,6 +9,7 @@ in {
|
||||
<home-manager/nixos>
|
||||
|
||||
../../modules/coredns
|
||||
../../modules/code-server
|
||||
../../modules/home-assistant
|
||||
../../modules/matrix
|
||||
];
|
||||
|
@ -10,6 +10,7 @@ in {
|
||||
<home-manager/nixos>
|
||||
|
||||
../../modules/coredns
|
||||
../../modules/code-server/nginx.nix
|
||||
../../modules/home-assistant/nginx.nix
|
||||
../../modules/matrix/nginx.nix
|
||||
];
|
||||
|
5
modules/code-server/default.nix
Normal file
5
modules/code-server/default.nix
Normal file
@ -0,0 +1,5 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [ code-server ];
|
||||
}
|
17
modules/code-server/nginx.nix
Normal file
17
modules/code-server/nginx.nix
Normal file
@ -0,0 +1,17 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
services.nginx = {
|
||||
enable = true;
|
||||
virtualHosts = {
|
||||
"walkah.codes" = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
locations."/" = {
|
||||
proxyPass = "http://plato:8080";
|
||||
proxyWebsockets = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user