nicks-nix-config/hosts/Alaska/default.nix

22 lines
389 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [ (import ./hardware-configuration.nix) ];
services = {
sshd.enable = true;
openssh.settings.PermitRootLogin = "no";
};
systemd.services.sshd.wantedBy = [ "multi-user.target" ];
boot.loader = {
systemd-boot.enable = true;
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot/efi";
};
};
}