nix/nixos/base.nix

15 lines
358 B
Nix
Raw Normal View History

2024-02-20 17:19:08 -06:00
{...}: {
2024-01-04 17:20:02 -06:00
# a minimal, familiar setup that I can bootstrap atop
2024-02-20 17:19:08 -06:00
imports = [
2024-01-04 22:15:55 -06:00
# may need to be tweaked based on the machine's paritioning scheme
2024-02-20 17:19:08 -06:00
# outputs.diskoConfigurations.standard
# desktop-usage
# wifi
2024-01-04 17:20:02 -06:00
];
2024-02-20 17:19:08 -06:00
networking.hostName = "lytedev_nixos_base";
2024-02-16 16:52:58 -06:00
2024-01-06 11:43:30 -06:00
# TODO: may not work for non-UEFI?
2024-01-04 17:20:02 -06:00
boot.loader.systemd-boot.enable = true;
}