From 5b091392716fb7564e82a911c9ad4f5d3fd84be3 Mon Sep 17 00:00:00 2001 From: Nydragon Date: Thu, 26 Sep 2024 12:25:39 +0200 Subject: [PATCH] feat(marr): enable openssh --- hosts/marr/configuration.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/marr/configuration.nix b/hosts/marr/configuration.nix index 594a3de..efaf08f 100644 --- a/hosts/marr/configuration.nix +++ b/hosts/marr/configuration.nix @@ -3,6 +3,7 @@ pkgs, inputs, username, + pubkeys, ... }: { @@ -147,6 +148,7 @@ "dialout" # Necessary for serial port interactions ]; shell = pkgs.fish; + openssh.authorizedKeys.keys = [ pubkeys.ny ]; }; }; @@ -159,6 +161,10 @@ security.polkit.enable = true; + services.openssh = { + enable = true; + }; + # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = with pkgs; [