23 lines
490 B
Nix
23 lines
490 B
Nix
# Configuration for brighde, a Lenovo Yoga 7i
|
|
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../../hardware/lenovo_yoga7i.nix
|
|
../../profiles/desktopFiona.nix
|
|
../../profiles/desktop_common.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
|
|
}
|