aboutsummaryrefslogtreecommitdiff
path: root/hosts/vps/configuration.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/vps/configuration.nix')
-rw-r--r--hosts/vps/configuration.nix6
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 ];