mio-ops/hosts/brighde/default.nix

23 lines
490 B
Nix
Raw Normal View History

2022-07-15 00:11:37 +00:00
# Configuration for brighde, a Lenovo Yoga 7i
{
config,
pkgs,
...
}: {
imports = [
2024-08-23 08:00:07 +00:00
../../hardware/lenovo_yoga7i.nix
../../profiles/desktopFiona.nix
../../profiles/desktop_common.nix
2022-07-15 00:11:37 +00:00
];
# 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
}