diff options
author | Emile <git@emile.space> | 2024-07-21 17:44:00 +0200 |
---|---|---|
committer | Emile <git@emile.space> | 2024-07-21 17:44:00 +0200 |
commit | e2256213063a87d6b631e84f03f912c4313d9008 (patch) | |
tree | 2b0946b2690591722e428588f27d38c7428b5501 | |
parent | 6b42d419f42320f68f71c57a61bdae8c52d496ae (diff) |
enable openssh, cause we can
-rw-r--r-- | nix/hosts/caladan/home_hydra.nix | 4 |
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; } |