{ config, lib, pkgs, ... }: { imports = [ ../config/common.nix ../config/users.nix ]; boot.kernelParams = [ "console=tty0" ''console="ttyS0,115200n8"'' ]; boot.loader.grub.extraConfig = '' GRUB_TERMINAL="console serial" GRUB_SERIAL_COMMAND="serial --speed=115200 --unit=0 --word=8 --parity=no --stop=1" ''; boot.loader.grub.enable = true; boot.loader.grub.version = 2; boot.loader.grub.devices = ["/dev/sda" "/dev/sdb"]; networking = { hostName = lib.mkForce "dragon"; }; services = { openssh = { enable = lib.mkDefault true; passwordAuthentication = false; }; }; fileSystems = { "/storage" = { device = "/dev/sda3"; fsType = "btrfs"; options = [ "subvol=storage" ]; }; }; system.stateVersion = lib.mkForce "17.09"; }