From 1bb10d2e153c72b01461672c2ad02c9c824b63f6 Mon Sep 17 00:00:00 2001 From: Ivan Dimitrov Date: Tue, 7 May 2024 00:53:37 +0300 Subject: [PATCH] catppuccin even on bootloader --- nixos/laptop/default.nix | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/nixos/laptop/default.nix b/nixos/laptop/default.nix index ff74978..0a022c9 100644 --- a/nixos/laptop/default.nix +++ b/nixos/laptop/default.nix @@ -17,8 +17,17 @@ boot = { loader = { - systemd-boot.enable = true; - efi.canTouchEfiVariables = true; + grub = { + enable = true; + catppuccin.enable = true; + useOSProber = true; + efiSupport = true; + device = "nodev"; + }; + efi = { + canTouchEfiVariables = true; + efiSysMountPoint = "/boot/efi"; + }; }; extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback ]; kernelModules = [ "v4l2loopback" ];