diff options
| author | Fuwn <[email protected]> | 2024-09-03 16:11:43 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-03 16:11:43 -0700 |
| commit | a93e1fa90e9951d728e968003ea810abeba64e4c (patch) | |
| tree | e2b2952fcc2d1f08b327a1a6fe0c58d70dc0e54f /modules/boot | |
| parent | tor mostly (diff) | |
| download | nixos-config-a93e1fa90e9951d728e968003ea810abeba64e4c.tar.xz nixos-config-a93e1fa90e9951d728e968003ea810abeba64e4c.zip | |
tings
Diffstat (limited to 'modules/boot')
| -rw-r--r-- | modules/boot/default.nix | 14 | ||||
| -rw-r--r-- | modules/boot/grub.nix | 16 |
2 files changed, 17 insertions, 13 deletions
diff --git a/modules/boot/default.nix b/modules/boot/default.nix index 577e74a..964a4e1 100644 --- a/modules/boot/default.nix +++ b/modules/boot/default.nix @@ -31,11 +31,15 @@ zenpower ]; - # initrd.availableKernelModules = [ - # "aesni_intel" - # "cryptd" - # "usb_storage" - # ]; + initrd = { + # systemd.enable = true; + + availableKernelModules = [ + # "aesni_intel" + # "cryptd" + "usb_storage" + ]; + }; kernelModules = [ "v4l2loopback" diff --git a/modules/boot/grub.nix b/modules/boot/grub.nix index fd6e1e8..49e0eef 100644 --- a/modules/boot/grub.nix +++ b/modules/boot/grub.nix @@ -13,14 +13,14 @@ gfxpayloadEfi = "keep"; splashMode = "normal"; - extraEntries = '' - menuentry "Arch Linux (linux-clear)" { - linux /vmlinuz-linux-clear - initrd /amd-ucode.img - initrd /booster-linux-clear.img - options root=PARTUUID=f510f35d-76a0-4469-aad5-da449541ecd2 rootflags=subvol=@ rw rootfstype=btrfs psi=1 nvidia_drm.modeset=1 - } - ''; + # extraEntries = '' + # menuentry "Arch Linux (linux-clear)" { + # linux /vmlinuz-linux-clear + # initrd /amd-ucode.img + # initrd /booster-linux-clear.img + # options root=PARTUUID=f510f35d-76a0-4469-aad5-da449541ecd2 rootflags=subvol=@ rw rootfstype=btrfs psi=1 nvidia_drm.modeset=1 + # } + # ''; theme = pkgs.fetchFromGitHub { owner = "Lxtharia"; |