{ self, pkgs, suites, lib, profiles, ... }:
{
  imports = suites.workstation;
  fileSystems."/" = {
    device = "/dev/disk/by-uuid/cab32824-2f7b-4b21-a6d1-8c2a1d2bb70c";
    fsType = "ext4";
  };
  fileSystems."/boot" = {
    device = "/dev/disk/by-uuid/4808-6D89";
    fsType = "vfat";
  };
  swapDevices = [ ];
  boot.loader.systemd-boot.enable = true;
  boot.loader.efi.canTouchEfiVariables = true;
  boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ];
  boot.initrd.kernelModules = [ ];
  boot.kernelModules = [ "kvm-amd" ];
  boot.kernelPackages = pkgs.linuxPackages_latest;
  hardware.cpu.amd.updateMicrocode = true;
  networking.useDHCP = false;
  networking.interfaces.enp6s0.useDHCP = false;
  time.timeZone = "Europe/Riga";
  i18n.defaultLocale = "en_US.UTF-8";
  console = {
    font = "Lat2-Terminus16";
    keyMap = "us";
  };
  nix.settings.max-jobs = lib.mkDefault 12;
  system.stateVersion = "21.11";
}