nix/nixos/base.nix

17 lines
354 B
Nix
Raw Normal View History

2024-01-04 17:20:02 -06:00
{
outputs,
flake,
...
}: {
# 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
2024-01-04 17:20:02 -06:00
flake.diskoConfigurations.standard
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;
}