# Configuration for brighde, a Lenovo Yoga 7i
{
  config,
  pkgs,
  ...
}: {
  imports = [
    ../../hardware/lenovo_yoga7i.nix
    ../../profiles/desktopFiona.nix
  ];

  # Use the UEFI boot loader.
  boot.loader = {
    systemd-boot.enable = true;
    efi.canTouchEfiVariables = true;
  };

  networking.hostName = "brighde"; # A poetess, sage, woman of wisdom, healing

  system.stateVersion = "22.05"; # The version of NixOS originally installed
}