minor patches (added thunderbird, fixed subspace ssh)
This commit is contained in:
parent
db9479fa96
commit
4a19a87761
3 changed files with 13 additions and 5 deletions
|
|
@ -45,7 +45,7 @@
|
|||
YearnForTheMines = {
|
||||
hostname = "deadlyserver.com";
|
||||
user = "emile";
|
||||
port = 24096;
|
||||
port = 29843;
|
||||
identityFile = "~/.ssh/id_deadlyserver";
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -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 = {
|
||||
|
|
|
|||
|
|
@ -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 -----
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue