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 = {
|
YearnForTheMines = {
|
||||||
hostname = "deadlyserver.com";
|
hostname = "deadlyserver.com";
|
||||||
user = "emile";
|
user = "emile";
|
||||||
port = 24096;
|
port = 29843;
|
||||||
identityFile = "~/.ssh/id_deadlyserver";
|
identityFile = "~/.ssh/id_deadlyserver";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -321,10 +321,9 @@ in {
|
||||||
HTTP_PORT = 3000;
|
HTTP_PORT = 3000;
|
||||||
PROTOCOL = "http"; # http internally, reverse proxy uses https externally
|
PROTOCOL = "http"; # http internally, reverse proxy uses https externally
|
||||||
|
|
||||||
|
START_SSH_SERVER = true;
|
||||||
DISABLE_SSH = false;
|
DISABLE_SSH = false;
|
||||||
SSH_PORT = 2222;
|
SSH_PORT = 2222;
|
||||||
# TODO: idk what this is, surely I need it to be true right???
|
|
||||||
# START_SSH_SERVER = true;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
DEFAULT = {
|
DEFAULT = {
|
||||||
|
|
|
||||||
|
|
@ -160,8 +160,14 @@ in {
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
# Hint Electrons apps to use Wayland
|
# set environment variables
|
||||||
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
environment.sessionVariables = {
|
||||||
|
# folder names with capitalisation look awful!
|
||||||
|
XDG_DOWNLOAD_DIR = "$HOME/downloads";
|
||||||
|
|
||||||
|
# Hint Electrons apps to use Wayland
|
||||||
|
NIXOS_OZONE_WL = "1";
|
||||||
|
};
|
||||||
|
|
||||||
# ---- SYSTEM PACKAGES -----
|
# ---- SYSTEM PACKAGES -----
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
|
@ -283,6 +289,9 @@ in {
|
||||||
thunar-media-tags-plugin # change metadata for media files
|
thunar-media-tags-plugin # change metadata for media files
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# mozilla's email client
|
||||||
|
thunderbird.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
# ----- FONTS -----
|
# ----- FONTS -----
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue