format with nixfmt to nixpkgs standarts
nix flake show / show-flake (push) Successful in 27s

This commit is contained in:
smayzy
2025-07-24 19:19:46 +02:00
parent 8ce74dd7bf
commit 092579af98
56 changed files with 438 additions and 218 deletions
+4 -4
View File
@@ -1,6 +1,6 @@
{ config, lib, ... }:
with lib;
with lib;
{
options.smayzy.grub-on-lap.enable = mkOption {
@@ -8,8 +8,8 @@
default = false;
description = "make grub works on this piece of shit laptop that can't boot normally";
};
config = {
config = {
boot.loader.systemd-boot.enable = false;
boot.loader.grub.enable = true;
boot.loader.grub.efiSupport = true;
@@ -19,4 +19,4 @@
boot.loader.efi.canTouchEfiVariables = mkIf (!config.smayzy.grub-on-lap.enable) true;
};
}
}