nix/nixos/base.nix
2024-02-20 17:19:08 -06:00

14 lines
358 B
Nix

{...}: {
# a minimal, familiar setup that I can bootstrap atop
imports = [
# may need to be tweaked based on the machine's paritioning scheme
# outputs.diskoConfigurations.standard
# desktop-usage
# wifi
];
networking.hostName = "lytedev_nixos_base";
# TODO: may not work for non-UEFI?
boot.loader.systemd-boot.enable = true;
}