summaryrefslogtreecommitdiff
path: root/sys/core/bootloader.nix
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2025-12-20 15:25:38 +0100
committeradikro <adikro@disroot.org>2025-12-20 15:25:38 +0100
commitc1d9af57156f3c95590d9a12c394ee064df9696e (patch)
tree7e515761590c510c30329ef8548c7d84a8e95aaa /sys/core/bootloader.nix
parent791bc419b6dac7c70951981ef6b34cdf85828470 (diff)
added disko config for laptop, added storage and memory modules
Diffstat (limited to 'sys/core/bootloader.nix')
-rw-r--r--sys/core/bootloader.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/core/bootloader.nix b/sys/core/bootloader.nix
index 292679e..7293ffc 100644
--- a/sys/core/bootloader.nix
+++ b/sys/core/bootloader.nix
@@ -1,14 +1,13 @@
{ config, lib, ... }:
let
- cfg = config.szpont.sys.core.bootloader;
+ cfg = config.sys.core.bootloader;
in
{
- options.szpont.sys.core.bootloader = lib.mkOption {
+ options.sys.core.bootloader = lib.mkOption {
type = lib.types.enum [ "systemd-boot" "grub" "none" ];
default = "systemd-boot";
- description = "Which bootloader to use";
+ description = "which bootloader to use";
};
-
config = lib.mkMerge [
{
boot.loader.efi.canTouchEfiVariables = true;