From 02f8b6d787dc38366ec18a33ebde30a0c7a8e14b Mon Sep 17 00:00:00 2001 From: m3tam3re Date: Thu, 10 Apr 2025 19:16:46 +0200 Subject: [PATCH] +ssh config zed for self-host-playbook --- home/features/desktop/coding.nix | 11 +++++++++++ home/m3tam3re/home.nix | 2 +- hosts/m3-kratos/configuration.nix | 8 ++++---- overlays/mods/n8n.nix | 6 +++--- 4 files changed, 19 insertions(+), 8 deletions(-) diff --git a/home/features/desktop/coding.nix b/home/features/desktop/coding.nix index 3be93d6..f13f83f 100644 --- a/home/features/desktop/coding.nix +++ b/home/features/desktop/coding.nix @@ -78,6 +78,17 @@ in { nickname = "m3-atlas"; args = ["-i" "~/.ssh/m3tam3re"]; } + { + host = "95.217.3.250"; + port = 2222; + nickname = "self-host-playbook"; + args = ["-i" "~/.ssh/self-host-playbook"]; + "projects" = [ + { + paths = ["/etc/nixos/current-systemconfig"]; + } + ]; + } ]; auto_update = false; format_on_save = "on"; diff --git a/home/m3tam3re/home.nix b/home/m3tam3re/home.nix index fd25be3..6b1e5d0 100644 --- a/home/m3tam3re/home.nix +++ b/home/m3tam3re/home.nix @@ -175,7 +175,7 @@ identityFile = "~/.ssh/m3tam3re"; }; "self-host-playbook" = { - hostname = "157.180.21.225"; + hostname = "95.217.3.250"; port = 2222; user = "m3tam3re"; identityFile = "~/.ssh/self-host-playbook"; diff --git a/hosts/m3-kratos/configuration.nix b/hosts/m3-kratos/configuration.nix index 5f6f171..d7a1d2a 100644 --- a/hosts/m3-kratos/configuration.nix +++ b/hosts/m3-kratos/configuration.nix @@ -20,10 +20,10 @@ security.pam.services.gdm.enableGnomeKeyring = true; networking.hostName = "m3-kratos"; # Define your hostname. networking.hostId = "458bd616"; - networking.extraHosts = '' - 127.0.0.1 releases.warp.dev - 127.0.0.1 app.warp.dev - ''; + # networking.extraHosts = '' + # 127.0.0.1 releases.warp.dev + # 127.0.0.1 app.warp.dev + # ''; # Pick only one of the below networking options. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. networking.networkmanager.enable = diff --git a/overlays/mods/n8n.nix b/overlays/mods/n8n.nix index 3455612..008f93c 100644 --- a/overlays/mods/n8n.nix +++ b/overlays/mods/n8n.nix @@ -1,18 +1,18 @@ {prev}: prev.n8n.overrideAttrs (oldAttrs: rec { - version = "1.84.1"; + version = "1.88.0"; src = prev.fetchFromGitHub { owner = "n8n-io"; repo = "n8n"; rev = "n8n@${version}"; - hash = "sha256-kZTB9fkC24qr0fenJxEzNdDEXMVTBCEtckPMx2evXsY="; + hash = "sha256-bCRkwLYwb4gfxA1qMgMeCOc0zcu8bFAPlW577kVq6JY="; }; pnpmDeps = prev.pnpm_10.fetchDeps { pname = oldAttrs.pname; inherit version src; - hash = "sha256-J3iNolU7QEYhAakGI5QcbRuxrh+4JI8oKCQlk+KrgEk="; + hash = "sha256-cZzrkxGVyH0gKzV/+2XQdzvks6m0nwR4Z5QnSPlxEJI="; }; nativeBuildInputs =