diff --git a/hosts/Alaska/default.nix b/hosts/Alaska/default.nix index dcb59ec..78202c6 100644 --- a/hosts/Alaska/default.nix +++ b/hosts/Alaska/default.nix @@ -5,17 +5,18 @@ { imports = [ (import ./hardware-configuration.nix) ]; + services = { + sshd.enable = true; + openssh.permitRootLogin = "no"; + }; + + systemd.services.sshd.wantedBy = [ "multi-user.target" ]; + boot.loader = { + systemd-boot.enable = true; efi = { canTouchEfiVariables = true; efiSysMountPoint = "/boot"; }; - grub = { - devices = [ "nodev" ]; - efiSupport = true; - enable = true; - version = 2; - useOSProber = false; - }; }; }