From b17f6cc92ac8027e9b992d564298c324994594d4 Mon Sep 17 00:00:00 2001 From: Joseph Hanson Date: Sun, 7 Jul 2024 09:19:37 -0500 Subject: [PATCH] Add ssh. --- configuration-grub.nix | 4 ++++ configuration-systemd.nix | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/configuration-grub.nix b/configuration-grub.nix index d59f343..64e4c44 100644 --- a/configuration-grub.nix +++ b/configuration-grub.nix @@ -54,4 +54,8 @@ hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; system.stateVersion = "24.05"; + + services.openssh = { + enable = true; + }; } diff --git a/configuration-systemd.nix b/configuration-systemd.nix index 6ed83da..64c055b 100644 --- a/configuration-systemd.nix +++ b/configuration-systemd.nix @@ -48,4 +48,8 @@ hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; system.stateVersion = "24.05"; + + services.openssh = { + enable = true; + }; }