mio-ops/hosts/brighde.nix

24 lines
522 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;
};
deployment.targetHost = "10.42.0.123";
networking.hostName = "brighde"; # A poetess, sage, woman of wisdom, healing
system.stateVersion = "22.05"; # The version of NixOS originally installed
}