pkgs: rose-pine-grub copy all

sh-initrd-on-root
Zynh Ludwig 2024-10-08 15:44:10 -07:00
parent 5da3f62134
commit 4fd0266d02
2 changed files with 8 additions and 2 deletions

View File

@ -129,7 +129,13 @@ in
swapDevices = [ ];
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.grub = {
enable = true;
efiSupport = true;
useOSProber = true;
device = "nodev";
theme = pkgs.rose-pine-grub;
};
boot.loader.efi.canTouchEfiVariables = true;
# Enable networking

View File

@ -17,7 +17,7 @@ stdenvNoCC.mkDerivation rec {
runHook preInstall
mkdir -p $out/
cp -r *[^.md] "$out/"
cp -r * "$out/"
runHook postInstall
'';