nix/nixos/base.nix

19 lines
430 B
Nix
Raw Normal View History

2024-02-16 16:52:58 -06:00
{
config,
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-02-16 16:52:58 -06:00
networking.hostName = config.home-manager.users.daniel.home.username;
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;
}