diff options
author | Karel Kočí <cynerd@email.cz> | 2023-08-20 16:53:35 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2023-08-20 16:53:35 +0200 |
commit | 14f6f4484ee474cc18f5b812c4072713e4803ba7 (patch) | |
tree | 9d9c72b6c83ac87f1e1779599f30226c1a6f570f /nixos | |
parent | d16b20ed6ad3699792f519c7c2370a2930081878 (diff) | |
download | nixos-personal-14f6f4484ee474cc18f5b812c4072713e4803ba7.tar.gz nixos-personal-14f6f4484ee474cc18f5b812c4072713e4803ba7.tar.bz2 nixos-personal-14f6f4484ee474cc18f5b812c4072713e4803ba7.zip |
nixos: raspberry pi use extlinux
Diffstat (limited to 'nixos')
-rw-r--r-- | nixos/configurations.nix | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/nixos/configurations.nix b/nixos/configurations.nix index 20e0fe7..08a0fef 100644 --- a/nixos/configurations.nix +++ b/nixos/configurations.nix @@ -67,10 +67,7 @@ with nixpkgs.lib; let boot.initrd.includeDefaultModules = false; boot.loader.grub.enable = false; boot.loader.systemd-boot.enable = false; - boot.loader.raspberryPi = { - enable = true; - version = 3; - }; + boot.loader.generic-extlinux-compatible.enable = true; }) ]; }; |