diff options
Diffstat (limited to 'hosts/vps/configuration.nix')
| -rw-r--r-- | hosts/vps/configuration.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/hosts/vps/configuration.nix b/hosts/vps/configuration.nix index 7e00260..285ae40 100644 --- a/hosts/vps/configuration.nix +++ b/hosts/vps/configuration.nix @@ -1,4 +1,4 @@ -{ ... }: +{ config, pkgs, ... }: { imports = [ @@ -16,6 +16,10 @@ extraGroups = [ "wheel" ]; }; + environment.systemPackages = with pkgs; [ + git + ]; + services.openssh = { enable = true; ports = [ 8693 ]; |
