diff options
author | Karel Kočí <cynerd@email.cz> | 2022-06-11 10:37:27 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2022-06-11 10:45:22 +0200 |
commit | a7e2c790b76faadb5f1dcf3745c240eaa24a037a (patch) | |
tree | 414f1d3fe69b6e09cb9466f1d09842f5cd178503 | |
parent | 5898abcf73501b821a407c2c0bc5d912965d9fae (diff) | |
download | nixturris-a7e2c790b76faadb5f1dcf3745c240eaa24a037a.tar.gz nixturris-a7e2c790b76faadb5f1dcf3745c240eaa24a037a.tar.bz2 nixturris-a7e2c790b76faadb5f1dcf3745c240eaa24a037a.zip |
nixos: set systemd to disable as well
-rw-r--r-- | nixos/modules/turris-defaults.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/turris-defaults.nix b/nixos/modules/turris-defaults.nix index dc2aeb5..0824a05 100644 --- a/nixos/modules/turris-defaults.nix +++ b/nixos/modules/turris-defaults.nix @@ -31,6 +31,7 @@ in { config = mkIf cnf.enable { # We do not need Grub as U-Boot supports boot using extlinux like file boot.loader.grub.enable = mkDefault false; + boot.loader.systemd-boot.enable = mkDefault false; boot.loader.generic-extlinux-compatible.enable = mkDefault true; # Use early print to the serial console boot.kernelParams = [ |