about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEmile <git@emile.space>2024-07-21 17:44:00 +0200
committerEmile <git@emile.space>2024-07-21 17:44:00 +0200
commite2256213063a87d6b631e84f03f912c4313d9008 (patch)
tree2b0946b2690591722e428588f27d38c7428b5501
parent6b42d419f42320f68f71c57a61bdae8c52d496ae (diff)
enable openssh, cause we can
-rw-r--r--nix/hosts/caladan/home_hydra.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/nix/hosts/caladan/home_hydra.nix b/nix/hosts/caladan/home_hydra.nix
index 63d3563..25686da 100644
--- a/nix/hosts/caladan/home_hydra.nix
+++ b/nix/hosts/caladan/home_hydra.nix
@@ -1,4 +1,4 @@
-{ config, pkgs, ... }:
+{ pkgs, ... }:
 
 {
  home = {
@@ -15,4 +15,6 @@
  home.packages = with pkgs; [
   tailscale
  ];
+
+ services.openssh.enable = true;
 }