aboutsummaryrefslogtreecommitdiff
path: root/modules/boot/options.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/boot/options.nix')
-rw-r--r--modules/boot/options.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/modules/boot/options.nix b/modules/boot/options.nix
deleted file mode 100644
index 9e85570..0000000
--- a/modules/boot/options.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{
- my-lib,
- config,
- lib,
- ...
-}: let
- inherit (lib) mkOption mkEnableOption;
- inherit (my-lib.options {inherit lib config;}) mkThemeOption;
-in {
- options = {
- collinux.boot = {
- systemd-boot.enable = mkEnableOption "systemd-boot";
- timeout = mkOption {
- description = "bootloader timeout";
- type = lib.types.int;
- default = 0;
- };
- plymouth = {
- enable = mkEnableOption "plymouth bootsplash";
- theme = mkThemeOption "plymouth";
- };
- secureBoot.enable = mkEnableOption "lanzaboote";
- };
- };
-}