nix/nixos/base.nix

13 lines
341 B
Nix
Raw Normal View History

{outputs, ...}: {
2024-01-04 17:20:02 -06:00
# a minimal, familiar setup that I can bootstrap atop
imports = with outputs.nixosModules; [
2024-01-04 22:15:55 -06:00
# may need to be tweaked based on the machine's paritioning scheme
outputs.diskoConfigurations.standard
2024-01-04 17:20:02 -06:00
desktop-usage
wifi
];
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;
}