{ config, pkgs, ... }: { imports = [ ./hardware-configuration.nix ../../modules ]; boot.loader = { systemd-boot = { enable = true; configurationLimit = 8; }; efi = { canTouchEfiVariables = true; efiSysMountPoint = "/boot/efi"; }; }; networking.hostName = "yuki"; networking.networkmanager.enable = true; services.xserver = { layout = "us"; xkbVariant = ""; }; services.openssh.enable = true; }