{ config, pkgs, ... }: { # Bootloader boot.loader.grub = { enable = true; device = "nodev"; efiSupport = true; }; fileSystems."/" = { device = "/dev/mapper/root"; fsType = "ext4"; }; swapDevices = [{ device = "/swapfile"; size = 4096; }]; # Locales and timezone time.timeZone = "Europe/London"; i18n.defaultLocale = "en_GB.UTF-8"; # UFW Firewall networking.firewall = { enable = true; allowedTCPPorts = [ 22 ]; # Allow SSH }; # Enable SSH services.openssh = { enable = true; settings = { PermitRootLogin = "no"; PasswordAuthentication = false; }; }; }