minor patches (added thunderbird, fixed subspace ssh)

This commit is contained in:
Emile Clark-Boman 2025-02-21 18:42:41 +10:00
parent db9479fa96
commit 4a19a87761
3 changed files with 13 additions and 5 deletions

View file

@ -45,7 +45,7 @@
YearnForTheMines = {
hostname = "deadlyserver.com";
user = "emile";
port = 24096;
port = 29843;
identityFile = "~/.ssh/id_deadlyserver";
};
};

View file

@ -321,10 +321,9 @@ in {
HTTP_PORT = 3000;
PROTOCOL = "http"; # http internally, reverse proxy uses https externally
START_SSH_SERVER = true;
DISABLE_SSH = false;
SSH_PORT = 2222;
# TODO: idk what this is, surely I need it to be true right???
# START_SSH_SERVER = true;
};
DEFAULT = {

View file

@ -160,8 +160,14 @@ in {
];
};
# set environment variables
environment.sessionVariables = {
# folder names with capitalisation look awful!
XDG_DOWNLOAD_DIR = "$HOME/downloads";
# Hint Electrons apps to use Wayland
environment.sessionVariables.NIXOS_OZONE_WL = "1";
NIXOS_OZONE_WL = "1";
};
# ---- SYSTEM PACKAGES -----
environment.systemPackages = with pkgs; [
@ -283,6 +289,9 @@ in {
thunar-media-tags-plugin # change metadata for media files
];
};
# mozilla's email client
thunderbird.enable = true;
};
# ----- FONTS -----