From 4a19a877619acde7b96e4887c26f693998cf0f3f Mon Sep 17 00:00:00 2001 From: Emile Clark-Boman Date: Fri, 21 Feb 2025 18:42:41 +1000 Subject: [PATCH] minor patches (added thunderbird, fixed subspace ssh) --- homes/subspace/default.nix | 2 +- hosts/hyrule/default.nix | 3 +-- hosts/myputer/default.nix | 13 +++++++++++-- 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/homes/subspace/default.nix b/homes/subspace/default.nix index fc1ba5a..6b1c0fa 100644 --- a/homes/subspace/default.nix +++ b/homes/subspace/default.nix @@ -45,7 +45,7 @@ YearnForTheMines = { hostname = "deadlyserver.com"; user = "emile"; - port = 24096; + port = 29843; identityFile = "~/.ssh/id_deadlyserver"; }; }; diff --git a/hosts/hyrule/default.nix b/hosts/hyrule/default.nix index 3d4db8b..11048b6 100755 --- a/hosts/hyrule/default.nix +++ b/hosts/hyrule/default.nix @@ -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 = { diff --git a/hosts/myputer/default.nix b/hosts/myputer/default.nix index 1ec0a14..73d2eb1 100755 --- a/hosts/myputer/default.nix +++ b/hosts/myputer/default.nix @@ -160,8 +160,14 @@ in { ]; }; - # Hint Electrons apps to use Wayland - environment.sessionVariables.NIXOS_OZONE_WL = "1"; + # set environment variables + 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 ----- 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 -----