removed the grub/systemd choice. fuck freedom

This commit is contained in:
2026-07-06 12:18:07 -05:00
parent 01198893ff
commit 232f8ca5f8
2 changed files with 11 additions and 68 deletions
-48
View File
@@ -11,54 +11,6 @@
description = "The kernel of the machine";
};
bootloader = {
type = lib.mkOption {
type = lib.types.enum [
"grub"
"systemd"
];
default = "grub";
description = "Which bootloader to use (grub or systemd-boot)";
};
grub = lib.mkOption {
type = lib.types.submodule {
options = {
enable = lib.mkOption {
type = lib.types.bool;
default = false;
};
device = lib.mkOption {
type = lib.types.str;
default = "nodev";
description = "Device to install GRUB on";
};
};
};
default = { };
description = "GRUB configuration block";
};
systemd = lib.mkOption {
type = lib.types.submodule {
options = {
enable = lib.mkOption {
type = lib.types.bool;
default = false;
};
efiSupport = lib.mkOption {
type = lib.types.bool;
default = true;
};
};
};
default = { };
description = "systemd-boot configuration block";
};
};
user = {
name = lib.mkOption {
type = lib.types.str;