From da0324ccf97c279eff32abb566df8f23f09fc503 Mon Sep 17 00:00:00 2001 From: uku Date: Tue, 7 Jan 2025 18:51:47 +0100 Subject: [PATCH] chore(common): move ghostty terminfo to server --- configs/common.nix | 2 -- configs/server.nix | 5 +++++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/configs/common.nix b/configs/common.nix index f02a143..f7ad2d4 100644 --- a/configs/common.nix +++ b/configs/common.nix @@ -70,8 +70,6 @@ in neovim ripgrep wget - - ghostty.terminfo ]; hm = { diff --git a/configs/server.nix b/configs/server.nix index 0177506..3ed62c1 100644 --- a/configs/server.nix +++ b/configs/server.nix @@ -1,4 +1,5 @@ { + pkgs, config, _utils, ... @@ -22,6 +23,10 @@ in hermetic = false; # hermetic fucks up for cross-system deployments }; + environment.systemPackages = with pkgs; [ + ghostty.terminfo + ]; + services = { tailscale.extraUpFlags = [ "--advertise-exit-node" ];