nixos-config/modules/common.nix
2025-03-20 15:26:29 +00:00

36 lines
629 B
Nix

{ config, pkgs, ... }:
{
# Bootloader
boot.loader.grub = {
enable = true;
version = 2;
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;
permitRootLogin = "no";
passwordAuthentication = false;
};
}