Don't think I want this anyway
This commit is contained in:
parent
c48747f361
commit
eb5202f933
|
@ -118,9 +118,10 @@
|
|||
services.packagekit.enable = true;
|
||||
|
||||
# Configure keymap in X11
|
||||
services.xserver = {
|
||||
services.xserver.xkb = {
|
||||
layout = "us";
|
||||
xkbVariant = "";
|
||||
options = "terminate:ctrl_alt_bksp,compose:caps_toggle";
|
||||
};
|
||||
|
||||
# Enable CUPS to print documents.
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
../../server/package-configs/jellyfin/configuration.nix
|
||||
../../server/package-configs/ombi/configuration.nix
|
||||
../../server/package-configs/aria2/configuration.nix
|
||||
../../server/package-configs/vscode-server/configuration.nix
|
||||
];
|
||||
|
||||
boot.tmp.cleanOnBoot = true;
|
||||
|
@ -111,7 +110,6 @@
|
|||
noto-fonts-emoji
|
||||
oh-my-zsh
|
||||
onlyoffice-documentserver
|
||||
openvscode-server
|
||||
postgresql_16
|
||||
python3
|
||||
rsync
|
||||
|
|
|
@ -1,24 +0,0 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
services.openvscode-server = {
|
||||
enable = true;
|
||||
port = 7773;
|
||||
telemetryLevel = "off";
|
||||
withoutConnectionToken = true;
|
||||
};
|
||||
services.nginx = {
|
||||
virtualHosts = {
|
||||
"code.lillianviolet.dev" = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
locations."/" = {
|
||||
proxyPass = "http://localhost:7773";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue