nix/nixos/base.nix
2024-01-04 22:36:22 -06:00

17 lines
350 B
Nix

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