nix-config/modules/boot/default.nix
2025-02-27 23:06:47 +01:00

16 lines
188 B
Nix

{
inputs,
headless,
...
}: {
imports = [
./greeter/sddm.nix
./refind.nix
(
if headless
then ./loader/grub.nix
else ./loader/systemd.nix
)
];
}