Enable SSH

This commit is contained in:
coolneng 2022-07-12 17:20:18 +02:00
parent 079c9c37a5
commit a364054395
1 changed files with 8 additions and 5 deletions

View File

@ -1,7 +1,5 @@
{ ... }: { { lib, ... }: {
imports = [ imports = [ <nixpkgs/nixos/modules/installer/sd-card/sd-image-aarch64.nix> ];
<nixpkgs/nixos/modules/installer/sd-card/sd-image-aarch64.nix>
];
# Add SSH key # Add SSH key
users.extraUsers.root.openssh.authorizedKeys.keys = [ users.extraUsers.root.openssh.authorizedKeys.keys = [
@ -16,4 +14,9 @@
# Increase /boot partition size # Increase /boot partition size
sdImage.firmwareSize = 256; sdImage.firmwareSize = 256;
# Enable SSH
services.sshd.enable = true;
systemd.services.sshd.wantedBy = lib.mkOverride 40 [ "multi-user.target" ];
} }