diff --git a/hosts/ghaf-proxy/configuration.nix b/hosts/ghaf-proxy/configuration.nix index bcf6fc50..2b846e84 100644 --- a/hosts/ghaf-proxy/configuration.nix +++ b/hosts/ghaf-proxy/configuration.nix @@ -2,6 +2,7 @@ # SPDX-License-Identifier: Apache-2.0 { self, + pkgs, inputs, modulesPath, lib, @@ -52,4 +53,9 @@ efiInstallAsRemovable = true; }; }; + + environment.systemPackages = with pkgs; [ + screen + tmux + ]; }